This commit is contained in:
Michael Meissner 1995-10-08 02:53:24 +00:00
parent f46f380706
commit d88c6a8a92
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sat Oct 7 22:52:42 1995 Michael Meissner <meissner@tiktok.cygnus.com>
* ch-exp.y (yylex): Fix typo.
Fri Oct 6 11:56:49 1995 Jim Wilson <wilson@chestnut.cygnus.com>
* remote-sim.c (gdbsim_open): Put callback initializations here.

View File

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