fix typo
authorMichael Meissner <gnu@the-meissners.org>
Sun, 8 Oct 1995 02:53:24 +0000 (02:53 +0000)
committerMichael Meissner <gnu@the-meissners.org>
Sun, 8 Oct 1995 02:53:24 +0000 (02:53 +0000)
gdb/ChangeLog
gdb/ch-exp.y

index d446914caf1cda7fdb9ead5ef0710133e941c318..1446ed7e75c98290902e2f123110fcaa4a952068 100644 (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.
index 87137c8aeb7aafe5102bbc7af24748d13c0e63c7..0d35a7037058c9a756de4bc15447fc893949c6df 100644 (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;