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/doc | |
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/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 17ab900..adcd4ff 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2012-09-17 Yao Qi <yao@codesourcery.com> + + * gdb.texinfo (List): Describe the meaning of 0 and -1 in + 'set listsize'. + 2012-09-13 Jan Kratochvil <jan.kratochvil@redhat.com> Eli Zaretskii <eliz@gnu.org> diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 2d49e13..dc8860a 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6706,6 +6706,8 @@ the @code{list} command. You can change this using @code{set listsize}: @item set listsize @var{count} Make the @code{list} command display @var{count} source lines (unless the @code{list} argument explicitly specifies some other number). +Setting @var{count} to -1 means there's no limit and 0 means suppress +display of source lines. @kindex show listsize @item show listsize |