diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2019-03-14 15:04:10 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2019-03-14 15:04:43 -0400 |
commit | 5c85e20d5a6cbcb58aabdac192142be38c96b069 (patch) | |
tree | f51f10c06d9e739b3f6e434ff103057860b704b9 /gdb/doc | |
parent | d7f848c3b51f01635557ab765f2ba176618e0bf8 (diff) | |
download | gdb-5c85e20d5a6cbcb58aabdac192142be38c96b069.zip gdb-5c85e20d5a6cbcb58aabdac192142be38c96b069.tar.gz gdb-5c85e20d5a6cbcb58aabdac192142be38c96b069.tar.bz2 |
Fix gdb.texinfo build
Commit b4be1b064860 ("Fix MI output for multi-location breakpoints")
broke the build of gdb.texinfo. The problem is simply the use of "@end
@table", which should be "@end table".
The error was:
/home/smarchi/src/binutils-gdb/gdb/doc/gdb.texinfo:27870: warning: @table should not appear in @end
/home/smarchi/src/binutils-gdb/gdb/doc/gdb.texinfo:27870: table requires an argument: the formatter for @item
/home/smarchi/src/binutils-gdb/gdb/doc/gdb.texinfo:27870: no matching `@end table'
/home/smarchi/src/binutils-gdb/gdb/doc/gdb.texinfo:27870: bad argument to @end: @table
/home/smarchi/src/binutils-gdb/gdb/doc/gdb.texinfo:27867: warning: @table has text but no @item
/home/smarchi/src/binutils-gdb/gdb/doc/gdb.texinfo:27879: @node seen before @end table
gdb/doc/ChangeLog:
* gdb.texinfo (GDB/MI Development and Front Ends): Fix closing
of table, "@end @table" -> "@end table".
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 1b7dabf..6b9911c 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2019-03-14 Simon Marchi <simon.marchi@efficios.com> + + * gdb.texinfo (GDB/MI Development and Front Ends): Fix closing + of table, "@end @table" -> "@end table". + 2019-03-14 Tom Tromey <tromey@adacore.com> * gdb.texinfo (Output Styling): Document "set style source" and diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 431752b..271739b 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -27881,7 +27881,7 @@ Use the output for multi-location breakpoints which was introduced by MI 3, even when using MI versions 2 or 1. This command has no effect when using MI version 3 or later. -@end @table +@end table The best way to avoid unexpected changes in MI that might break your front end is to make your project known to @value{GDBN} developers and |