* doc/cpp.texi (Variadic Macros): Fix line continuation in an
	example.
From-SVN: r259012
+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.
 
 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