diff options
author | Yao Qi <yao@codesourcery.com> | 2012-09-17 08:42:14 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-09-17 08:42:14 +0000 |
commit | 6fc1c7733ea454110cfcb02be7d9b4b0f12eca91 (patch) | |
tree | 21dc5418ed29e2209c93817d94465640b82d124f /gdb/source.c | |
parent | 6acef6cd7bfefe89401de1eca7e12e737eb94da6 (diff) | |
download | gdb-6fc1c7733ea454110cfcb02be7d9b4b0f12eca91.zip gdb-6fc1c7733ea454110cfcb02be7d9b4b0f12eca91.tar.gz gdb-6fc1c7733ea454110cfcb02be7d9b4b0f12eca91.tar.bz2 |
gdb/
* cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
Update comment to add_setshow_integer_cmd.
* cli/cli-setshow.c (do_set_command): Handle case
'var_zuinteger_unlimited'.
(do_show_command): Likewise.
* cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
for command 'remotetimeout'.
* command.h (enum var_types): New zuinteger_unlimited. Update comment
to var_integer.
* source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
for command 'set listsize'.
gdb/doc/
* gdb.texinfo (List): Describe the meaning of 0 and -1 in
'set listsize'.
gdb/testsuite/
* gdb.base/list.exp (set_listsize): Don't set arg to "unlimited"
when it is less than 0.
Diffstat (limited to 'gdb/source.c')
-rw-r--r-- | gdb/source.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/source.c b/gdb/source.c index 0ff0782..31e104f 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -1965,12 +1965,12 @@ The matching line number is also stored as the value of \"$_\".")); add_com_alias ("?", "reverse-search", class_files, 0); } - add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\ + add_setshow_zuinteger_unlimited_cmd ("listsize", class_support, + &lines_to_list, _("\ Set number of source lines gdb will list by default."), _("\ Show number of source lines gdb will list by default."), NULL, - NULL, - show_lines_to_list, - &setlist, &showlist); + NULL, show_lines_to_list, + &setlist, &showlist); add_cmd ("substitute-path", class_files, set_substitute_path_command, _("\ |