diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-03-04 03:12:05 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-03-04 03:12:05 +0000 |
commit | 93dc3414391aaa742bdc21c8a9c153c47b559ac7 (patch) | |
tree | 9b576c4751456b6c71bd4fefe6a1d46ba9d1841a | |
parent | b855dfe7eb01d63c4592bb71aba09669b9313c60 (diff) | |
download | gdb-93dc3414391aaa742bdc21c8a9c153c47b559ac7.zip gdb-93dc3414391aaa742bdc21c8a9c153c47b559ac7.tar.gz gdb-93dc3414391aaa742bdc21c8a9c153c47b559ac7.tar.bz2 |
* ch-exp.y (match_simple_name_string): Accept '_' as well as an
alphabetic character as the start of a name.
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/ch-exp.y | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 663c01c..de9ed08 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ Thu Mar 3 12:41:16 1994 Jim Kingdon (kingdon@deneb.cygnus.com) + * ch-exp.y (match_simple_name_string): Accept '_' as well as an + alphabetic character as the start of a name. + * sparclite/Makefile.in (all install): Build and install aload. * configure.in: Accept i[34]86-*-*sysv32 because that is what diff --git a/gdb/ch-exp.y b/gdb/ch-exp.y index ae974fc..e818803 100644 --- a/gdb/ch-exp.y +++ b/gdb/ch-exp.y @@ -1044,7 +1044,7 @@ match_simple_name_string () { char *tokptr = lexptr; - if (isalpha (*tokptr)) + if (isalpha (*tokptr) || *tokptr == '_') { char *result; do { |