This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB 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]

FYI: fix buglet in gdbint.texinfo


I'm checking this in as obvious.

A couple of @nodes in gdbint.texinfo still had "pointer" arguments.
This caused a bug -- if you were in the "Getting Started" node and typed
"n", Emacs would say that there was no "next".

The fix is to remove the extra arguments to @node.  We don't need them.
I verified that we don't use them anyplace else (except the Top node,
where I think they are ok, maybe required).

Tested by rebuilding the docs and redoing the test by hand.

Tom

2010-02-19  Tom Tromey  <tromey@redhat.com>

	* gdbint.texinfo (Getting Started): Fix @node.
	(Debugging GDB): Likewise.

Index: gdbint.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v
retrieving revision 1.319
diff -u -r1.319 gdbint.texinfo
--- gdbint.texinfo	13 Feb 2010 04:57:11 -0000	1.319
+++ gdbint.texinfo	19 Feb 2010 19:07:04 -0000
@@ -7820,7 +7820,7 @@
 * Debugging GDB::		Debugging @value{GDBN} with itself
 @end menu
 
-@node Getting Started,,, Hints
+@node Getting Started
 
 @section Getting Started
 
@@ -7903,7 +7903,7 @@
 @value{GDBN}''---if we had some magic secret we would put it in this manual.
 Suggestions for improving the manual are always welcome, of course.
 
-@node Debugging GDB,,,Hints
+@node Debugging GDB
 
 @section Debugging @value{GDBN} with itself
 @cindex debugging @value{GDBN}


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