Fix inaccuracies in "info skip" help

"help info skip" uses "skip info" in its examples, which is not the same
(it ends up creating new skips).  Also, the Type column that is referred
to doesn't exist today.

gdb/ChangeLog:

	* skip.c (_initialize_step_skip): Fix "info skip" help.
This commit is contained in:
Simon Marchi 2018-11-19 17:27:13 -05:00 committed by Simon Marchi
parent 73fc52c4cc
commit 261f6f7962
2 changed files with 8 additions and 7 deletions

View File

@ -1,3 +1,7 @@
2018-11-19 Simon Marchi <simon.marchi@polymtl.ca>
* skip.c (_initialize_step_skip): Fix "info skip" help.
2018-11-16 Tom Tromey <tom@tromey.com>
PR rust/23625:

View File

@ -717,14 +717,11 @@ Usage: skip delete [NUMBER | RANGES]..."),
&skiplist);
set_cmd_completer (c, complete_skip_number);
c = add_info ("skip", info_skip_command, _("\
Display the status of skips. You can specify numbers (e.g. \"skip info 1 3\"), \
ranges (e.g. \"skip info 4-8\"), or both (e.g. \"skip info 1 3 4-8\").\n\n\
add_info ("skip", info_skip_command, _("\
Display the status of skips. You can specify numbers (e.g. \"info skip 1 3\"), \
ranges (e.g. \"info skip 4-8\"), or both (e.g. \"info skip 1 3 4-8\").\n\n\
If you don't specify any numbers or ranges, we'll show all skips.\n\n\
Usage: skip info [NUMBER | RANGES]...\n\
The \"Type\" column indicates one of:\n\
\tfile - ignored file\n\
\tfunction - ignored function"));
Usage: info skip [NUMBER | RANGES]..."));
set_cmd_completer (c, complete_skip_number);
add_setshow_boolean_cmd ("skip", class_maintenance,