aboutsummaryrefslogtreecommitdiff
path: root/gdb/cli/cli-utils.h
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2011-02-27 20:57:16 +0000
committerMichael Snyder <msnyder@vmware.com>2011-02-27 20:57:16 +0000
commit3bd0f5efd1910d53733ff9962deee99d7e45d1de (patch)
treef3f77fd22027a884f5bc951c09d9988eae80f4a3 /gdb/cli/cli-utils.h
parentaf62414197efc46568bd459473b4a22da42d2132 (diff)
downloadgdb-3bd0f5efd1910d53733ff9962deee99d7e45d1de.zip
gdb-3bd0f5efd1910d53733ff9962deee99d7e45d1de.tar.gz
gdb-3bd0f5efd1910d53733ff9962deee99d7e45d1de.tar.bz2
2011-02-24 Michael Snyder <msnyder@vmware.com>
* value.c (value_from_history_ref): New function. * value.h (value_from_history_ref): Export. * cli/cli-utils.c (get_number_trailer): Use value_from_history_ref to parse value history references. * cli/cli-utils.h (get_number_trailer): Update comment. 2011-02-24 Michael Snyder <msnyder@vmware.com> * gdb.base/break.exp: Add tests for delete breakpoints using convenience variables and value history references.
Diffstat (limited to 'gdb/cli/cli-utils.h')
-rw-r--r--gdb/cli/cli-utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cli/cli-utils.h b/gdb/cli/cli-utils.h
index 6158999..09240d0 100644
--- a/gdb/cli/cli-utils.h
+++ b/gdb/cli/cli-utils.h
@@ -23,8 +23,8 @@
/* *PP is a string denoting a number. Get the number of the. Advance
*PP after the string and any trailing whitespace.
- Currently the string can either be a number or "$" followed by the
- name of a convenience variable. */
+ Currently the string can either be a number, or "$" followed by the
+ name of a convenience variable, or ("$" or "$$") followed by digits. */
extern int get_number (char **);