This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH] Fix missing "@end table" gdb.texinfo
- From: Pedro Alves <palves at redhat dot com>
- To: Jan-Benedict Glaw <jbglaw at lug-owl dot de>, gdb-patches at sourceware dot org
- Date: Tue, 23 Sep 2014 13:19:04 +0100
- Subject: Re: [PATCH] Fix missing "@end table" gdb.texinfo
- Authentication-results: sourceware.org; auth=none
- References: <20140922110646 dot GD4144 at lug-owl dot de>
Thanks!
Pedro Alves
On 09/22/2014 12:06 PM, Jan-Benedict Glaw wrote:
> Hi!
>
> A recent commit removed one line too much from gdb.texinfo. See eg.
> build
> http://toolchain.lug-owl.de/buildbot/show_build_details.php?id=356554:
>
> makeinfo --split-size=5000000 -DHAVE_MAKEINFO_CLICK -I /home/vaxbuild/repos/binutils_gdb/gdb/doc/../../readline/doc -I /home/vaxbuild/repos/binutils_gdb/gdb/doc/../mi -I /home/vaxbuild/repos/binutils_gdb/gdb/doc \
> -o gdb.info /home/vaxbuild/repos/binutils_gdb/gdb/doc/gdb.texinfo
> /home/vaxbuild/repos/binutils_gdb/gdb/doc/gdb.texinfo:3912: @node seen before @end table
> make[4]: *** [gdb.info] Error 1
>
>
>
> diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
> index d77a80e..9a4bc09 100644
> --- a/gdb/doc/ChangeLog
> +++ b/gdb/doc/ChangeLog
> @@ -1,3 +1,7 @@
> +2014-09-22 Jan-Benedict Glaw <jbglaw@lug-owl.de>
> +
> + * gdb.texinfo (Set Breaks): Add missing "@end table".
> +
> 2014-09-22 Pedro Alves <palves@redhat.com>
>
> * gdb.texinfo (Set Breaks): Document that "set breakpoint
> diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
> index 537fae8..026706a 100644
> --- a/gdb/doc/gdb.texinfo
> +++ b/gdb/doc/gdb.texinfo
> @@ -3857,6 +3857,7 @@ Causes all breakpoints to be inserted in the target at all times. If
> the user adds a new breakpoint, or changes an existing breakpoint, the
> breakpoints in the target are updated immediately. A breakpoint is
> removed from the target only when breakpoint itself is deleted.
> +@end table
>
> @value{GDBN} handles conditional breakpoints by evaluating these conditions
> when a breakpoint breaks. If the condition is true, then the process being
>
>
> Committed as obvious.
>
> MfG, JBG
>