* rclex.l: Allow underscores at the start of identifiers.
This commit is contained in:
parent
c5c2803a66
commit
c6e15d68d9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2007-04-20 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* rclex.l: Allow underscores at the start of identifiers.
|
||||
|
||||
2007-04-19 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* budemang.c: Delete.
|
||||
|
|
|
@ -217,7 +217,7 @@ static char *get_string (int);
|
|||
}
|
||||
}
|
||||
|
||||
[A-Za-z][^ ,\t\r\n]* {
|
||||
[_A-Za-z][^ ,\t\r\n]* {
|
||||
char *s;
|
||||
|
||||
/* I rejected comma in a string in order to
|
||||
|
|
Loading…
Reference in a new issue