diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | parser.y | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2014-01-27 Kaz Kylheku <kaz@kylheku.com> + * parser.y (yybadtoken): Handle METAQUO in switch. + +2014-01-27 Kaz Kylheku <kaz@kylheku.com> + * lib.c (reduce_left, reduce_right): changing the behavior so that the initial value is optional. this creates the possibility that the effective list of operands is empty, in which case the function @@ -1231,6 +1231,7 @@ void yybadtoken(int tok, val context) case LITCHAR: problem = lit("string literal character"); break; case METAPAR: problem = lit("@("); break; case METABKT: problem = lit("@["); break; + case METAQUO: problem = lit("@'"); break; case DOTDOT: problem = lit(".."); break; case HASH_BACKSLASH: problem = lit("#\\"); break; case HASH_SLASH: problem = lit("#/"); break; |