diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-04-07 14:11:08 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-04-07 14:11:08 +0200 |
commit | 23b1539bf90bfb6b35d9a2be0a2b6b1e311c1460 (patch) | |
tree | 1e14ad6211df41634cbd0e9cf9a638e36ec17060 /conf/confbase.Y | |
parent | 7976a574b692f747d833d899caf0fbbf702714c1 (diff) | |
download | bird-23b1539bf90bfb6b35d9a2be0a2b6b1e311c1460.tar bird-23b1539bf90bfb6b35d9a2be0a2b6b1e311c1460.zip |
Filters upgraded - a bit. Moved code to filter.c because it is where
it belongs. (f-util.c stays there for auxiliary and non-important things.)
Diffstat (limited to 'conf/confbase.Y')
-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 880b0df..0598d56 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -37,9 +37,10 @@ CF_DECLS %type <i> expr bool pxlen -%left '=' +%nonassoc '=' '<' '>' %left '+' '-' %left '*' '/' '%' +%left '!' CF_KEYWORDS(DEFINE, ON, OFF, YES, NO) |