diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-10-08 14:25:53 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-10-08 14:25:53 +0200 |
commit | 112d71a73f30d26891eda4374bf0f2ab31c5c048 (patch) | |
tree | c9614b197a7c139786f7934a591c3baa8fa8e181 | |
parent | b2b7bbfc690a7ad6a61a8cdf4abe87345057fb2e (diff) | |
download | bird-112d71a73f30d26891eda4374bf0f2ab31c5c048.tar bird-112d71a73f30d26891eda4374bf0f2ab31c5c048.zip |
Fixes syntactic priority of '.' .
Dot in expressions like net.len definitely should have the highhest
priority.
-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 2d95a0d..534b332 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -63,10 +63,11 @@ CF_DECLS %nonassoc PREFIX_DUMMY %left AND OR -%nonassoc '=' '<' '>' '~' '.' GEQ LEQ NEQ PO PC +%nonassoc '=' '<' '>' '~' GEQ LEQ NEQ PO PC %left '+' '-' %left '*' '/' '%' %left '!' +%nonassoc '.' CF_KEYWORDS(DEFINE, ON, OFF, YES, NO) |