diff options
author | Yao Qi <yao@codesourcery.com> | 2012-11-28 11:56:15 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-11-28 11:56:15 +0000 |
commit | 7e20dfcd947ceb8b6f48863e9bae82205a63cc8a (patch) | |
tree | ee90521542b7d8a5942665acb3272f984e1fed88 /gdb/value.c | |
parent | c23b5043ce222d89275b7fa1608f9bf7e0faa065 (diff) | |
download | gdb-7e20dfcd947ceb8b6f48863e9bae82205a63cc8a.zip gdb-7e20dfcd947ceb8b6f48863e9bae82205a63cc8a.tar.gz gdb-7e20dfcd947ceb8b6f48863e9bae82205a63cc8a.tar.bz2 |
gdb/
2012-11-28 Yao Qi <yao@codesourcery.com>
* breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
abbreviate 'delete tracepoints' to 'delete tr'.
* corefile.c (_initialize_core): Call add_alias_cmd to
abbreviate 'set gnutarget' to 'set g'.
* value.c (_initialize_values): Call add_alias_cmd to abbreviate
'show convenience' to 'show conv'.
Diffstat (limited to 'gdb/value.c')
-rw-r--r-- | gdb/value.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/value.c b/gdb/value.c index 2a1e1f2..07130ed 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -3384,6 +3384,7 @@ A few convenience variables are given values automatically:\n\ Convenience functions are defined via the Python API." #endif ), &showlist); + add_alias_cmd ("conv", "convenience", no_class, 1, &showlist); add_cmd ("values", no_set_class, show_values, _("\ Elements of value history around item number IDX (or last ten)."), |