diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | parser.y | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2013-12-17 Kaz Kylheku <kaz@kylheku.com> + * parser.y (yybadtoken): Handle HASH_H. + +2013-12-17 Kaz Kylheku <kaz@kylheku.com> + * eval.c (op_defvar): Fix the semantics to be similar to Common Lisp: no effect if the variable already exists. @@ -1193,6 +1193,7 @@ void yybadtoken(int tok, val context) case DOTDOT: problem = lit(".."); break; case HASH_BACKSLASH: problem = lit("#\\"); break; case HASH_SLASH: problem = lit("#/"); break; + case HASH_H: problem = lit("#H"); break; } if (problem != 0) |