Handle parse number error in goto_bookmark_command
authorYao Qi <yao@codesourcery.com>
Sat, 22 Feb 2014 06:42:12 +0000 (14:42 +0800)
committerYao Qi <yao@codesourcery.com>
Thu, 6 Mar 2014 07:03:30 +0000 (15:03 +0800)
commit0c13193f334ea744a251f768179468b5a17915b6
tree290492a472e6dbe7c54c365a3113e29bd207ce80
parent2217da06d8dbaf59c17bd363935bd926e5fdc8ab
Handle parse number error in goto_bookmark_command

In GDB mainline, the error message for goto-bookmark
isn't perfect.

 (gdb) goto-bookmark 1.1
 goto-bookmark: no bookmark found for ''.

This patch tweaks the error message by checking the return value of
get_number.  With patch applied, it becomes:

 (gdb) goto-bookmark 1.1
 goto-bookmark: invalid bookmark number '1.1'.

gdb:

2014-03-06  Yao Qi  <yao@codesourcery.com>

* reverse.c (goto_bookmark_command): Add local 'p'.  Emit error
early if get_number returns zero.  Use 'p' instead of 'args'.
gdb/ChangeLog
gdb/reverse.c