This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

CVS-19981231: PATCH for documentation buglet


This  happened today with CVS  sources as of 1998/12/31 08:41:47 +0100
while building gcc.info:

/home/gnu/work/GNU/egcs-19981229-i586-linux/texinfo/makeinfo/makeinfo   -I../../egcs-19981229/gcc -o gcc.info ../../egcs-19981229/gcc/gcc.texi
../../egcs-19981229/gcc/extend.texi:2986: `@end' expected `ifset', but saw `smallexample'.

The patch below fixes it.

manfred

1998-12-31  Manfred Hollstein  <manfred@s-direktnet.de>

	* extend.texi (__builtin_constant_p): Add missing @smallexample.

diff -rup -x CVS -x RCS -x *.o -x *.info* -x *.html* -x *.elc -x *.dvi -x *.orig -x *~ -x version.el egcs-19981229.orig/gcc/extend.texi egcs-19981229/gcc/extend.texi
--- egcs-19981229.orig/gcc/extend.texi	Wed Dec 30 18:13:54 1998
+++ egcs-19981229/gcc/extend.texi	Thu Dec 31 15:21:32 1998
@@ -2980,6 +2980,7 @@ memory was a critical resource.  If you 
 you may want it to be folded if it involves constants, but need to call
 a function if it does not.  For example:
 
+@smallexample
 #define Scale_Value(X)  \
   (__builtin_constant_p (X) ? ((X) * SCALE + OFFSET) : Scale (X))
 @end smallexample


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]