This is the mail archive of the gdb-patches@sources.redhat.com 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]

typos in gdb.texinfo


Hello!

Please apply this patch to gdb.texinfo (rev 1.29 in sourceware).
It fixes one typo and offers some markup enchancements.

Thank you in advance,
Dima.


Index: gdb.texinfo
===================================================================
RCS file: /home/cvs/en-gdbman/gdb.texinfo,v
retrieving revision 1.5
diff -u -r1.5 gdb.texinfo
--- gdb.texinfo	2000/11/17 09:58:54	1.5
+++ gdb.texinfo	2000/11/17 10:09:49
@@ -3321,23 +3321,23 @@
 
 The @code{next} command only stops at the first instruction of a
 source line.  This prevents multiple stops that could otherwise occur in
-switch statements, for loops, etc.
+@code{switch} statements, @code{for} loops, etc.
 
 @kindex set step-mode
 @item set step-mode
 @cindex functions without line info, and stepping
 @cindex stepping into functions with no line info
 @itemx set step-mode on
-The @code{set step-mode on} command causes the @code{step} command to to
+The @code{set step-mode on} command causes the @code{step} command to
 stop at the first instruction of a function which contains no debug line
 information rather than stepping over it.
 
 This is useful in cases where you may be interested in inspecting the assembly
-language of a function which has no symbolic info and do not want @value{GDBN}
+code of a function which has no symbolic info and do not want @value{GDBN}
 to automatically skip over this function.
 
 @item set step-mode off
-Causes the step command to step over any functions which contains no
+Causes the @code{step} command to step over any functions which contains no
 debug information.  This is the default.
 
 @kindex finish

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