* ch-exp.y (match_simple_name_string): Accept '_' as well as an
authorJim Kingdon <jkingdon@engr.sgi.com>
Fri, 4 Mar 1994 03:12:05 +0000 (03:12 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Fri, 4 Mar 1994 03:12:05 +0000 (03:12 +0000)
alphabetic character as the start of a name.

gdb/ChangeLog
gdb/ch-exp.y

index 663c01cc37934be49379e6f91367c9cd9cf17d30..de9ed0842f91955ac01878d097bd1c38933c4e59 100644 (file)
@@ -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
index ae974fc5dbdda0f4dfb8eb4f2c51dce2e05e2e1f..e81880383948bd686424c74333ae9d048982d2c8 100644 (file)
@@ -1044,7 +1044,7 @@ match_simple_name_string ()
 {
   char *tokptr = lexptr;
 
-  if (isalpha (*tokptr))
+  if (isalpha (*tokptr) || *tokptr == '_')
     {
       char *result;
       do {