]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fixes syntactic priority of '.' .
authorOndrej Zajicek <santiago@crfreenet.org>
Fri, 8 Oct 2010 12:25:53 +0000 (14:25 +0200)
committerOndrej Zajicek <santiago@crfreenet.org>
Fri, 8 Oct 2010 12:25:53 +0000 (14:25 +0200)
Dot in expressions like net.len definitely should have the highhest
priority.

conf/confbase.Y

index 2d95a0d3f0a45e9530701e2e8e37e40d7e4b26a4..534b332f9d5bb02c5c150517d95dcd71fd6a21b0 100644 (file)
@@ -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)