From: Martin Liska Date: Mon, 12 Apr 2021 14:13:50 +0000 (+0200) Subject: docs: fix content of smallexample X-Git-Tag: basepoints/gcc-12~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f17d44ad986e0ae7e81c81179463000ee9d7f43;p=thirdparty%2Fgcc.git docs: fix content of smallexample gcc/ChangeLog: * doc/extend.texi: Escape @smallexample content. --- diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 6542ada6583c..1ddafb3ff2ca 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -3867,11 +3867,11 @@ be used: @smallexample __attribute__ ((__symver__ ("foo@@VERS_2"))) int foo_v1 (void) -{ +@{ return 0; -} +@} -__attribute__ ((__symver__ ("foo@VERS_3"))) +__attribute__ ((__symver__ ("foo@@VERS_3"))) __attribute__ ((alias ("foo_v1"))) int symver_foo_v1 (void); @end smallexample