diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-03-28 21:07:56 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-03-28 21:07:56 +0000 |
commit | 215b9f980a60ef3224f3093a52954e0518e4fd28 (patch) | |
tree | a4bd3618016fb04131facd22c1ab3580c5e9d0e5 | |
parent | 7edbb660ff9bc48e3facb398a20fb0fad92a4782 (diff) | |
download | gdb-215b9f980a60ef3224f3093a52954e0518e4fd28.zip gdb-215b9f980a60ef3224f3093a52954e0518e4fd28.tar.gz gdb-215b9f980a60ef3224f3093a52954e0518e4fd28.tar.bz2 |
Fix Doug Evans's commit of 2013-03-21.
* gdb.texinfo (Maintenance Commands): Use @enumerate, not "@table
@bullet", which is invalid (makeinfo 5.1 barfs).
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 13 |
2 files changed, 13 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index cab3ad9..31593d4 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2013-03-28 Eli Zaretskii <eliz@gnu.org> + + * gdb.texinfo (Maintenance Commands): Use @enumerate, not "@table + @bullet", which is invalid (makeinfo 5.1 barfs). + 2013-03-28 Pedro Alves <palves@redhat.com> PR gdb/15294 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index fc2aae1..dec27a8 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -35645,11 +35645,14 @@ Enable or disable the printing of basic symbol table statistics for each command. If enabled, @value{GDBN} will display the following information: -@table @bullet -@item number of symbol tables -@itemx number of primary symbol tables -@itemx number of blocks in the blockvector -@end table +@enumerate a +@item +number of symbol tables +@item +number of primary symbol tables +@item +number of blocks in the blockvector +@end enumerate @end table @kindex maint space |