diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-10-25 11:27:05 -0400 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-10-25 11:27:05 -0400 |
commit | bdca604f10ffdbde56c68ca30b4adbee0f10818e (patch) | |
tree | 599e34192405cf7cab4da2cd439c5dd376f0005b | |
parent | 8895368748f50ab84f9006c6df7d82edc4019817 (diff) | |
download | txr-bdca604f10ffdbde56c68ca30b4adbee0f10818e.tar.gz txr-bdca604f10ffdbde56c68ca30b4adbee0f10818e.tar.bz2 txr-bdca604f10ffdbde56c68ca30b4adbee0f10818e.zip |
* parser.y: Remove mention of nonexistent terminal \\
from %right associativity clause.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | parser.y | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2011-10-25 Kaz Kylheku <kaz@kylheku.com> + * parser.y: Remove mention of nonexistent terminal \\ + from %right associativity clause. + +2011-10-25 Kaz Kylheku <kaz@kylheku.com> + * filter.c (fun_k): New keyword variable. (function_filter): Use :fun keyword symbol instead of fun. (filter_init): New keyword variable initialized. @@ -93,7 +93,7 @@ static val parsed_spec; %left '|' '/' %left '&' %right '~' '*' '?' '+' '%' -%right '.' '\\' REGCHAR LITCHAR +%right '.' REGCHAR LITCHAR %% |