From 8f17d44ad986e0ae7e81c81179463000ee9d7f43 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Mon, 12 Apr 2021 16:13:50 +0200 Subject: [PATCH] docs: fix content of smallexample gcc/ChangeLog: * doc/extend.texi: Escape @smallexample content. --- gcc/doc/extend.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.3