From c54a138f843e86571ff8a3ff29dbddf1d4489849 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Mon, 2 Apr 2018 16:04:06 +0000 Subject: [PATCH] cpp.texi (Variadic Macros): Fix line continuation in an example. * doc/cpp.texi (Variadic Macros): Fix line continuation in an example. From-SVN: r259012 --- gcc/ChangeLog | 5 +++++ gcc/doc/cpp.texi | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 187ec0b53b5..fcf97e5a420 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-04-02 Gerald Pfeifer + + * doc/cpp.texi (Variadic Macros): Fix line continuation in an + example. + 2018-04-02 Chung-Ju Wu * config/nds32/nds32.c (TARGET_CANONICALIZE_COMPARISON): Define. diff --git a/gcc/doc/cpp.texi b/gcc/doc/cpp.texi index ced3e465e73..4297c0ca9ce 100644 --- a/gcc/doc/cpp.texi +++ b/gcc/doc/cpp.texi @@ -1710,7 +1710,7 @@ invocation expands to its argument; but if the variable argument does not have any tokens, the @code{@w{__VA_OPT__}} expands to nothing: @smallexample -#define eprintf(format, @dots{}) \\ +#define eprintf(format, @dots{}) \ fprintf (stderr, format __VA_OPT__(,) __VA_ARGS__) @end smallexample -- 2.30.2