mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 17:18:24 +08:00
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'.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
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'.
|
||||||
|
|
||||||
2012-11-27 Joel Brobecker <brobecker@adacore.com>
|
2012-11-27 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
* sparc-sol2-nat.c (supply_gregset): Fix first parameter in
|
* sparc-sol2-nat.c (supply_gregset): Fix first parameter in
|
||||||
|
@ -16339,6 +16339,7 @@ Delete specified tracepoints.\n\
|
|||||||
Arguments are tracepoint numbers, separated by spaces.\n\
|
Arguments are tracepoint numbers, separated by spaces.\n\
|
||||||
No argument means delete all tracepoints."),
|
No argument means delete all tracepoints."),
|
||||||
&deletelist);
|
&deletelist);
|
||||||
|
add_alias_cmd ("tr", "tracepoints", class_trace, 1, &deletelist);
|
||||||
|
|
||||||
c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
|
c = add_cmd ("tracepoints", class_trace, disable_trace_command, _("\
|
||||||
Disable specified tracepoints.\n\
|
Disable specified tracepoints.\n\
|
||||||
|
@ -456,6 +456,7 @@ Use `set gnutarget auto' to specify automatic detection."),
|
|||||||
set_gnutarget_command,
|
set_gnutarget_command,
|
||||||
show_gnutarget_string,
|
show_gnutarget_string,
|
||||||
&setlist, &showlist);
|
&setlist, &showlist);
|
||||||
|
add_alias_cmd ("g", "gnutarget", class_files, 1, &setlist);
|
||||||
|
|
||||||
if (getenv ("GNUTARGET"))
|
if (getenv ("GNUTARGET"))
|
||||||
set_gnutarget (getenv ("GNUTARGET"));
|
set_gnutarget (getenv ("GNUTARGET"));
|
||||||
|
@ -3384,6 +3384,7 @@ A few convenience variables are given values automatically:\n\
|
|||||||
Convenience functions are defined via the Python API."
|
Convenience functions are defined via the Python API."
|
||||||
#endif
|
#endif
|
||||||
), &showlist);
|
), &showlist);
|
||||||
|
add_alias_cmd ("conv", "convenience", no_class, 1, &showlist);
|
||||||
|
|
||||||
add_cmd ("values", no_set_class, show_values, _("\
|
add_cmd ("values", no_set_class, show_values, _("\
|
||||||
Elements of value history around item number IDX (or last ten)."),
|
Elements of value history around item number IDX (or last ten)."),
|
||||||
|
Reference in New Issue
Block a user