From 20693c0a60f931911372ffbf2f6bba48025ff238 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 16 Nov 2015 19:41:04 +0100 Subject: work around regression in texinfo 6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- doc/info/chap/error-reporting.texinfo | 8 ++++---- doc/info/chap/memory-allocation.texinfo | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/info/chap') diff --git a/doc/info/chap/error-reporting.texinfo b/doc/info/chap/error-reporting.texinfo index 7bb39db..4d44a31 100644 --- a/doc/info/chap/error-reporting.texinfo +++ b/doc/info/chap/error-reporting.texinfo @@ -578,11 +578,11 @@ A more scalable example: if (FAILABLE_CALL(call_and_check)) \ goto fail; \ @} while (0) -/* @w{@xtext{`@xcode{try}` or simply `@xcode{t}` may be even better.}} */ +/* @w{@xrm{}`@xtt{}try@xrm{}` or simply `@xtt{}t@xrm{}` may be even better.@xtt{}} */ #define fail_unless (call_and_check) \ fail_if(!(call_and_check)) -/* @w{@xtext{`@xcode{f}` may be even better.}} */ +/* @w{@xrm{}`@xtt{}f@xrm{}` may be even better.@xtt{}} */ int my_function(void) @{ @@ -590,7 +590,7 @@ int my_function(void) void* array; /* ... */ fail_if (!(array = malloc(n))); - /* @w{@xtext{or perhaps, @xcode{fail_unless (array = malloc(n));}}} */ + /* @w{@xrm{}or perhaps, `@xtt{}fail_unless (array = malloc(n));@xrm{}`@xtt{}} */ /* ... */ return 0; @@ -629,7 +629,7 @@ int my_function(void) if (FAILURE_CHECK(r < 0, 1)) @{ if (errno != EINTR) - /* @w{@xtext{Or @xcode{FAILURE_CHECK(errno != EINTR, 3)}.}} */ + /* @w{@xrm{}Or `@xtt{}FAILURE_CHECK(errno != EINTR, 3)@xrm{}`.@xtt{}} */ goto fail; continue; @} diff --git a/doc/info/chap/memory-allocation.texinfo b/doc/info/chap/memory-allocation.texinfo index 66c0067..0ef4982 100644 --- a/doc/info/chap/memory-allocation.texinfo +++ b/doc/info/chap/memory-allocation.texinfo @@ -867,7 +867,7 @@ size_t psize, new_size; if (p == NULL) @{ p = old; - goto fail; /* @w{@xtext{Where @xcode{p} is cleaned up.}} */ + goto fail; /* @w{@xrm{}Where `@xtt{}p@xrm{}` is cleaned up.@xtt{}} */ @} psize = new_size; @} -- cgit v1.2.3-70-g09d2