From c1d780c2c7b5c8fe0a330f77263ec2eec16b541f Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Tue, 18 Sep 2012 20:14:56 +0000 Subject: [PATCH] gdb/ChangeLog: 2012-09-18 Sergio Durigan Junior * infcmd.c (_initialize_infcmd): Register `j' as an alias for `jump'. gdb/doc/ChangeLog: 2012-09-18 Sergio Durigan Junior * gdb.texinfo (jump): Mention new alias `j' for `jump'. --- gdb/ChangeLog | 5 +++++ gdb/doc/ChangeLog | 4 ++++ gdb/doc/gdb.texinfo | 3 +++ gdb/infcmd.c | 1 + 4 files changed, 13 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f89617c8ba..6c8fcdb61f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-09-18 Sergio Durigan Junior + + * infcmd.c (_initialize_infcmd): Register `j' as an alias for + `jump'. + 2012-09-18 Joel Brobecker * linespec.c (iterate_over_all_matching_symtabs): Use the correct diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 232337451b..d928ed081f 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2012-09-18 Sergio Durigan Junior + + * gdb.texinfo (jump): Mention new alias `j' for `jump'. + 2012-09-18 Yao Qi * gdb.texinfo (GDB/MI Async Records): Document new MI diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index cd4513bc17..ddcbbad3b2 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -15495,8 +15495,11 @@ an address of your own choosing, with the following commands: @table @code @kindex jump +@kindex j @r{(@code{jump})} @item jump @var{linespec} +@itemx j @var{linespec} @itemx jump @var{location} +@itemx j @var{location} Resume execution at line @var{linespec} or at address given by @var{location}. Execution stops again immediately if there is a breakpoint there. @xref{Specify Location}, for a description of the diff --git a/gdb/infcmd.c b/gdb/infcmd.c index cce624e464..fd035df905 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -3104,6 +3104,7 @@ Usage: jump \n\ Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\ for an address to start at.")); set_cmd_completer (c, location_completer); + add_com_alias ("j", "jump", class_run, 1); if (xdb_commands) { -- 2.34.1