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]

[commit] Fix help text of "save gdb-index" command.


Hi.

I happened to notice this:

(gdb) help save
[...]
save breakpoints -- Save current breakpoint definitions as a script
save gdb-index -- Save a 
save tracepoints -- Save current tracepoint definitions as a script
[...]

Fix as follows:

(gdb) help save
[...]
save breakpoints -- Save current breakpoint definitions as a script
save gdb-index -- Save a gdb-index file
save tracepoints -- Save current tracepoint definitions as a script
[...]

2010-12-15  Doug Evans  <dje@google.com>

	* dwarf2read.c (_initialize_dwarf2_read): Fix help text of
	"save gdb-index" command.

Index: dwarf2read.c
===================================================================
RCS file: /cvs/src/src/gdb/dwarf2read.c,v
retrieving revision 1.489
diff -u -p -r1.489 dwarf2read.c
--- dwarf2read.c	12 Dec 2010 19:19:27 -0000	1.489
+++ dwarf2read.c	16 Dec 2010 01:41:05 -0000
@@ -15839,7 +15839,7 @@ The value is the maximum depth to print.
 
   c = add_cmd ("gdb-index", class_files, save_gdb_index_command,
 	       _("\
-Save a .gdb-index file.\n\
+Save a gdb-index file.\n\
 Usage: save gdb-index DIRECTORY"),
 	       &save_cmdlist);
   set_cmd_completer (c, filename_completer);


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