fix typo
This commit is contained in:
parent
f46f380706
commit
d88c6a8a92
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user