mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-31 05:44:41 +08:00
OBVIOUS move add_comm_alias "!" <=> "shell" near the add_com "shell"
gdb/ChangeLog 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be> * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias close to the add_com "shell".
This commit is contained in:
@ -1831,6 +1831,8 @@ Execute the rest of the line as a shell command.\n\
|
||||
With no arguments, run an inferior shell."));
|
||||
set_cmd_completer (c, filename_completer);
|
||||
|
||||
add_com_alias ("!", "shell", class_support, 0);
|
||||
|
||||
c = add_com ("edit", class_files, edit_command, _("\
|
||||
Edit specified file or function.\n\
|
||||
With no argument, edits file containing most recent line listed.\n\
|
||||
@ -1895,8 +1897,6 @@ So, for example, if you want to disassemble function bar in file foo.c\n\
|
||||
you must type \"disassemble 'foo.c'::bar\" and not \"disassemble foo.c:bar\"."));
|
||||
set_cmd_completer (c, location_completer);
|
||||
|
||||
add_com_alias ("!", "shell", class_support, 0);
|
||||
|
||||
c = add_com ("make", class_support, make_command, _("\
|
||||
Run the ``make'' program using the rest of the line as arguments."));
|
||||
set_cmd_completer (c, filename_completer);
|
||||
|
Reference in New Issue
Block a user