diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-03-10 21:21:12 +0100 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-03-10 21:21:12 +0100 |
commit | c8d5ffafb7c7e644048691221ca9d56ec68925a0 (patch) | |
tree | 17160af9ded8a3ffe7eeef18034d0328a34e9471 | |
parent | ce17d4c165cadb09d391e34cda1b796a125ef012 (diff) | |
download | bird-c8d5ffafb7c7e644048691221ca9d56ec68925a0.tar bird-c8d5ffafb7c7e644048691221ca9d56ec68925a0.zip |
Fix <=, >=, !=
-rw-r--r-- | conf/cf-lex.l | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index a54cdd9..557d837 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -177,6 +177,10 @@ WHITE [ \t] <CCOMM><<EOF>> cf_error("Unterminated comment"); <CCOMM>. +\!\= return NEQ; +\<\= return LEQ; +\>\= return GEQ; + %% static int |