From: Gerald Pfeifer Date: Mon, 2 Apr 2018 16:04:06 +0000 (+0000) Subject: cpp.texi (Variadic Macros): Fix line continuation in an example. X-Git-Tag: basepoints/gcc-9~386 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c54a138f843e86571ff8a3ff29dbddf1d4489849;p=thirdparty%2Fgcc.git cpp.texi (Variadic Macros): Fix line continuation in an example. * doc/cpp.texi (Variadic Macros): Fix line continuation in an example. From-SVN: r259012 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 187ec0b53b57..fcf97e5a420f 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 ced3e465e731..4297c0ca9ce5 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