diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2012-09-18 20:14:56 +0000 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2012-09-18 20:14:56 +0000 |
commit | c1d780c2c7b5c8fe0a330f77263ec2eec16b541f (patch) | |
tree | 41978a618851fc1f674070f835a18808045d863a /gdb/infcmd.c | |
parent | 4ae24af054894eef0a5a45ab48aeef263d2739ec (diff) | |
download | gdb-c1d780c2c7b5c8fe0a330f77263ec2eec16b541f.zip gdb-c1d780c2c7b5c8fe0a330f77263ec2eec16b541f.tar.gz gdb-c1d780c2c7b5c8fe0a330f77263ec2eec16b541f.tar.bz2 |
gdb/ChangeLog:
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'.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index cce624e..fd035df 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -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) { |