This is the mail archive of the gcc-bugs@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]
Other format: [Raw text]

[Bug other/50759] [4.7 Regression] @table ended by @end quotation at line 595


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50759

--- Comment #2 from dodji at seketeli dot org <dodji at seketeli dot org> 2011-10-20 11:48:24 UTC ---
> It looks like support for @quotation/@end quotation pairs needs adding to
> texi2pod.pl.

That, or I could just use @smallexample/@end smallexample as in the
other places of the documentation.

I am about to commit the below to trunk as obvious.

    Use @smallexample instead of @quotation in cppopts.texi

    gcc/
        * doc/cppopts.texi: Use @smallexample/@end smallexample in
        documentation for -fdebug-cpp instead of @quotation/@end quotation
        that is not supported by contrib/texi2pod.pl.

diff --git a/gcc/doc/cppopts.texi b/gcc/doc/cppopts.texi
index ef3a0b2..6c70a0a 100644
--- a/gcc/doc/cppopts.texi
+++ b/gcc/doc/cppopts.texi
@@ -590,9 +590,9 @@ This option is only useful for debugging GCC.  When used
with
 token in the output is preceded by the dump of the map its location
 belongs to.  The dump of the map holding the location of a token would
 be:
-@quotation
+@smallexample

@{@samp{P}:@file{/file/path};@samp{F}:@file{/includer/path};@samp{L}:@var{line_num};@samp{C}:@var{col_num};@samp{S}:@var{system_header_p};@samp{M}:@var{map_address};@samp{E}:@var{macro_expansion_p},@samp{loc}:@var{location}@}
-@end quotation
+@end smallexample

 When used without @option{-E}, this option has no effect.


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