summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2010-10-08 14:25:53 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2010-10-08 14:25:53 +0200
commit112d71a73f30d26891eda4374bf0f2ab31c5c048 (patch)
treec9614b197a7c139786f7934a591c3baa8fa8e181
parentb2b7bbfc690a7ad6a61a8cdf4abe87345057fb2e (diff)
downloadbird-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.Y3
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)