diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-16 19:41:04 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-16 19:41:04 +0100 |
commit | 20693c0a60f931911372ffbf2f6bba48025ff238 (patch) | |
tree | 45e972b673b4ebac83bd79137b824b5526bafc22 /doc/info/chap/error-reporting.texinfo | |
parent | typo (diff) | |
download | slibc-20693c0a60f931911372ffbf2f6bba48025ff238.tar.gz slibc-20693c0a60f931911372ffbf2f6bba48025ff238.tar.bz2 slibc-20693c0a60f931911372ffbf2f6bba48025ff238.tar.xz |
work around regression in texinfo 6.0
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | doc/info/chap/error-reporting.texinfo | 8 |
1 files changed, 4 insertions, 4 deletions
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; @} |