From: Ondrej Zajicek Date: Fri, 8 Oct 2010 12:25:53 +0000 (+0200) Subject: Fixes syntactic priority of '.' . X-Git-Tag: v1.3.2~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=112d71a73f30d26891eda4374bf0f2ab31c5c048;p=thirdparty%2Fbird.git Fixes syntactic priority of '.' . Dot in expressions like net.len definitely should have the highhest priority. --- diff --git a/conf/confbase.Y b/conf/confbase.Y index 2d95a0d3f..534b332f9 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)