summaryrefslogtreecommitdiffstats
path: root/conf/confbase.Y
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-03-04 22:19:10 +0100
committerMartin Mares <mj@ucw.cz>2000-03-04 22:19:10 +0100
commita58dad62383855ad1a60d4ec5406c38d24874506 (patch)
tree5ebafebb0826e64d4694a8705717512725161039 /conf/confbase.Y
parentee76a92a80a0241421f57fe332c251255d2af4f8 (diff)
downloadbird-a58dad62383855ad1a60d4ec5406c38d24874506.tar
bird-a58dad62383855ad1a60d4ec5406c38d24874506.zip
Please *think* when defining operator priorities.
(-: num_of_parser_conflicts -= 42 :-)
Diffstat (limited to 'conf/confbase.Y')
-rw-r--r--conf/confbase.Y3
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y
index ba60fb2..33fb3f7 100644
--- a/conf/confbase.Y
+++ b/conf/confbase.Y
@@ -41,6 +41,7 @@ CF_DECLS
}
%token END CLI_MARKER INVALID_TOKEN
+%token GEQ LEQ NEQ
%token <i> NUM ENUM
%token <i32> RTRID
%token <a> IPA
@@ -50,7 +51,7 @@ CF_DECLS
%type <i> expr bool pxlen
%type <time> datetime
-%nonassoc '=' '<' '>' '~' '.'
+%nonassoc '=' '<' '>' '~' '.' GEQ LEQ NEQ
%left '+' '-'
%left '*' '/' '%'
%left '!'