* 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:
Jim Kingdon 1994-03-04 03:12:05 +00:00
parent b855dfe7eb
commit 93dc341439
2 changed files with 4 additions and 1 deletions

View 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

View File

@ -1044,7 +1044,7 @@ match_simple_name_string ()
{
char *tokptr = lexptr;
if (isalpha (*tokptr))
if (isalpha (*tokptr) || *tokptr == '_')
{
char *result;
do {