diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/confbase.Y | 3 |
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 '!' |