diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-06-01 10:43:29 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-06-01 10:43:29 +0200 |
commit | 5f4aee76a2e26a6947f47273d510edc524716a45 (patch) | |
tree | 9004972bd0c1fd4de12e9cfdfdfee67babb50066 /conf/confbase.Y | |
parent | 1877dab21715eb23addb3391afbd8dbf571f833d (diff) | |
download | bird-5f4aee76a2e26a6947f47273d510edc524716a45.tar bird-5f4aee76a2e26a6947f47273d510edc524716a45.zip |
Added && and ||.
Diffstat (limited to 'conf/confbase.Y')
-rw-r--r-- | conf/confbase.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index b48a929..5da84b1 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -44,7 +44,7 @@ CF_DECLS } %token END CLI_MARKER INVALID_TOKEN -%token GEQ LEQ NEQ +%token GEQ LEQ NEQ AND OR %token <i> NUM ENUM %token <i32> RTRID %token <a> IPA @@ -57,7 +57,7 @@ CF_DECLS %type <px> prefix prefix_or_ipa %nonassoc PREFIX_DUMMY -%nonassoc '=' '<' '>' '~' '.' GEQ LEQ NEQ +%nonassoc '=' '<' '>' '~' '.' GEQ LEQ NEQ AND OR %left '+' '-' %left '*' '/' '%' %left '!' |