gdb/ChangeLog:
authorSergio Durigan Junior <sergiodj@redhat.com>
Tue, 18 Sep 2012 20:14:56 +0000 (20:14 +0000)
committerSergio Durigan Junior <sergiodj@redhat.com>
Tue, 18 Sep 2012 20:14:56 +0000 (20:14 +0000)
2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>

* infcmd.c (_initialize_infcmd): Register `j' as an alias for
`jump'.

gdb/doc/ChangeLog:
2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>

* gdb.texinfo (jump): Mention new alias `j' for `jump'.

gdb/ChangeLog
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/infcmd.c

index f89617c8ba7a5f2b530bd8a4938444f9db2351df..6c8fcdb61f899c44cc1ac5931b6e7f427bad86e3 100644 (file)
@@ -1,3 +1,8 @@
+2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
+
+       * infcmd.c (_initialize_infcmd): Register `j' as an alias for
+       `jump'.
+
 2012-09-18  Joel Brobecker  <brobecker@adacore.com>
 
        * linespec.c (iterate_over_all_matching_symtabs): Use the correct
index 232337451b28fff0530be265983e1338d34e73f7..d928ed081fba53c6dfdc252c8bc7aae9c0fb00d8 100644 (file)
@@ -1,3 +1,7 @@
+2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
+
+       * gdb.texinfo (jump): Mention new alias `j' for `jump'.
+
 2012-09-18  Yao Qi  <yao@codesourcery.com>
 
        * gdb.texinfo (GDB/MI Async Records): Document new MI
index cd4513bc174890d09ce50eb2469d62ae22a05827..ddcbbad3b2fb61d6174d8d7209cd833f9319df15 100644 (file)
@@ -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
index cce624e464fbb4cae3893d578ea37efe2baafb53..fd035df9055faedbffe18119836b01ec0c2f2670 100644 (file)
@@ -3104,6 +3104,7 @@ Usage: jump <location>\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)
     {
This page took 0.068899 seconds and 4 git commands to generate.