diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-12-03 11:58:23 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-12-03 11:58:23 -0800 |
commit | d29d62162d6898ea2e9d5b5516834e740c4b8c0c (patch) | |
tree | 287a1cbd2cb31af9ae6fe0c9ff0369a15c8abb71 | |
parent | 12d43b07be6f86ef92c0eb9b59fd23c1f5aa1fbe (diff) | |
parent | 8b37331abdcd1a29e8b3950d222e41baf7326b56 (diff) | |
download | txr-d29d62162d6898ea2e9d5b5516834e740c4b8c0c.tar.gz txr-d29d62162d6898ea2e9d5b5516834e740c4b8c0c.tar.bz2 txr-d29d62162d6898ea2e9d5b5516834e740c4b8c0c.zip |
Merge.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | parser.l | 2 |
2 files changed, 8 insertions, 2 deletions
@@ -7,6 +7,14 @@ 2009-12-03 Kaz Kylheku <kkylheku@gmail.com> + * parser.l (YY_NO_UNPUT): Removed superfluous #define. This is not + needed because suppressing generation of unput is requested via + the %option. In scanners generated by the legacy version of + flex, 2.5.4, still widely in use. this redundancy leads to + a multiple #define YY_NO_UNPUT and a compiler warning. + +2009-12-03 Kaz Kylheku <kkylheku@gmail.com> + Fix for failing test suite on MIPS machine, due to gc failing to mark a local variable in txr_main. @@ -42,8 +42,6 @@ #include "utf8.h" #include "parser.h" -#define YY_NO_UNPUT - #define YY_INPUT(buf, result, max_size) \ do { \ val c = nil; \ |