* ch-exp.y (yylex): Also look for '$' following '$'.

This commit is contained in:
Per Bothner 1995-10-09 01:00:09 +00:00
parent 23de525f42
commit 93f972b7de
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Oct 8 18:01:04 1995 Per Bothner <bothner@kalessin.cygnus.com>
* ch-exp.y (yylex): Also look for '$' following '$'.
Sat Oct 7 22:52:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
* ch-exp.y (yylex): Fix typo.

View File

@ -1479,7 +1479,7 @@ yylex ()
yylval.sval.ptr = lexptr;
do {
lexptr++;
} while (isalnum (*lexptr) || (*lexptr == '_'));
} while (isalnum (*lexptr) || *lexptr == '_' || *lexptr == '$');
yylval.sval.length = lexptr - yylval.sval.ptr;
write_dollar_variable (yylval.sval);
return GDB_VARIABLE;