mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
* ch-exp.y (match_simple_name_string): Accept '_' as well as an
alphabetic character as the start of a name.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1044,7 +1044,7 @@ match_simple_name_string ()
|
||||
{
|
||||
char *tokptr = lexptr;
|
||||
|
||||
if (isalpha (*tokptr))
|
||||
if (isalpha (*tokptr) || *tokptr == '_')
|
||||
{
|
||||
char *result;
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user