public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/50759] New: [4.7 Regression] @table ended by @end quotation at line 595
@ 2011-10-17 17:00 hjl.tools at gmail dot com
  2011-10-18 15:07 ` [Bug other/50759] " jsm28 at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: hjl.tools at gmail dot com @ 2011-10-17 17:00 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 50759
           Summary: [4.7 Regression] @table ended by @end quotation at
                    line 595
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: hjl.tools@gmail.com


On Linux/x86, revision 180099 gave

@table ended by @end quotation at line 595
@table ended by @end quotation at line 595
make[6]: [cpp.pod] Error 25 (ignored)
make[6]: [gcc.pod] Error 25 (ignored)


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug other/50759] [4.7 Regression] @table ended by @end quotation at line 595
  2011-10-17 17:00 [Bug other/50759] New: [4.7 Regression] @table ended by @end quotation at line 595 hjl.tools at gmail dot com
@ 2011-10-18 15:07 ` jsm28 at gcc dot gnu.org
  2011-10-20 11:43 ` dodji at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2011-10-18 15:07 UTC (permalink / raw)
  To: gcc-bugs

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

Joseph S. Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dodji at gcc dot gnu.org

--- Comment #1 from Joseph S. Myers <jsm28 at gcc dot gnu.org> 2011-10-18 15:07:33 UTC ---
This appears to be coming from the -fdebug-cpp documentation in cppopts.texi. 
It looks like support for @quotation/@end quotation pairs needs adding to
texi2pod.pl.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug other/50759] [4.7 Regression] @table ended by @end quotation at line 595
  2011-10-17 17:00 [Bug other/50759] New: [4.7 Regression] @table ended by @end quotation at line 595 hjl.tools at gmail dot com
  2011-10-18 15:07 ` [Bug other/50759] " jsm28 at gcc dot gnu.org
@ 2011-10-20 11:43 ` dodji at gcc dot gnu.org
  2011-10-20 11:49 ` dodji at seketeli dot org
  2011-10-20 13:18 ` dodji at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: dodji at gcc dot gnu.org @ 2011-10-20 11:43 UTC (permalink / raw)
  To: gcc-bugs

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

Dodji Seketeli <dodji at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2011-10-20
     Ever Confirmed|0                           |1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug other/50759] [4.7 Regression] @table ended by @end quotation at line 595
  2011-10-17 17:00 [Bug other/50759] New: [4.7 Regression] @table ended by @end quotation at line 595 hjl.tools at gmail dot com
  2011-10-18 15:07 ` [Bug other/50759] " jsm28 at gcc dot gnu.org
  2011-10-20 11:43 ` dodji at gcc dot gnu.org
@ 2011-10-20 11:49 ` dodji at seketeli dot org
  2011-10-20 13:18 ` dodji at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: dodji at seketeli dot org @ 2011-10-20 11:49 UTC (permalink / raw)
  To: gcc-bugs

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.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug other/50759] [4.7 Regression] @table ended by @end quotation at line 595
  2011-10-17 17:00 [Bug other/50759] New: [4.7 Regression] @table ended by @end quotation at line 595 hjl.tools at gmail dot com
                   ` (2 preceding siblings ...)
  2011-10-20 11:49 ` dodji at seketeli dot org
@ 2011-10-20 13:18 ` dodji at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: dodji at gcc dot gnu.org @ 2011-10-20 13:18 UTC (permalink / raw)
  To: gcc-bugs

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

Dodji Seketeli <dodji at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #3 from Dodji Seketeli <dodji at gcc dot gnu.org> 2011-10-20 13:18:17 UTC ---
Fixed by commit r180101


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-10-20 13:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-17 17:00 [Bug other/50759] New: [4.7 Regression] @table ended by @end quotation at line 595 hjl.tools at gmail dot com
2011-10-18 15:07 ` [Bug other/50759] " jsm28 at gcc dot gnu.org
2011-10-20 11:43 ` dodji at gcc dot gnu.org
2011-10-20 11:49 ` dodji at seketeli dot org
2011-10-20 13:18 ` dodji at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).