diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-12-03 11:55:09 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-12-03 11:55:09 -0800 |
commit | 8b37331abdcd1a29e8b3950d222e41baf7326b56 (patch) | |
tree | 5d24e501b960230715d0e27b5f687f8f4ec63612 /parser.l | |
parent | ad025d8db847c1100b25478191a1a0ca9ad22db1 (diff) | |
download | txr-8b37331abdcd1a29e8b3950d222e41baf7326b56.tar.gz txr-8b37331abdcd1a29e8b3950d222e41baf7326b56.tar.bz2 txr-8b37331abdcd1a29e8b3950d222e41baf7326b56.zip |
* 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.
Diffstat (limited to 'parser.l')
-rw-r--r-- | parser.l | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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; \ |