cpp.texi (Variadic Macros): Fix line continuation in an example.
authorGerald Pfeifer <gerald@pfeifer.com>
Mon, 2 Apr 2018 16:04:06 +0000 (16:04 +0000)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Mon, 2 Apr 2018 16:04:06 +0000 (16:04 +0000)
* doc/cpp.texi (Variadic Macros): Fix line continuation in an
example.

From-SVN: r259012

gcc/ChangeLog
gcc/doc/cpp.texi

index 187ec0b53b5734d9ad28a15f8529e00ef39dfd94..fcf97e5a420f377926111ce87063c0a7bf59e214 100644 (file)
@@ -1,3 +1,8 @@
+2018-04-02  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * doc/cpp.texi (Variadic Macros): Fix line continuation in an
+       example.
+
 2018-04-02  Chung-Ju Wu  <jasonwucj@gmail.com>
 
        * config/nds32/nds32.c (TARGET_CANONICALIZE_COMPARISON): Define.
index ced3e465e731a984f482d6550bc64f6186258d7b..4297c0ca9ce569ca704c05702984b55eca879854 100644 (file)
@@ -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