]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Conf: Remove toksym from symbol_known
authorOndrej Zajicek <santiago@crfreenet.org>
Tue, 27 Jun 2023 12:49:28 +0000 (14:49 +0200)
committerOndrej Zajicek <santiago@crfreenet.org>
Tue, 12 Sep 2023 14:31:45 +0000 (16:31 +0200)
No need to have toksym in symbol_known, as defined symbols are preferred
(by scope) to keywords anyway. Adding it just creates grammar conflicts.

conf/confbase.Y

index c62731b592a078dbee055ce9bcb21f8bbfc72886..2efeb29f9b7e6daae06a2868b1130bbfaf68602c 100644 (file)
@@ -178,7 +178,7 @@ expr_us:
  ;
 
 symbol: CF_SYM_UNDEFINED | CF_SYM_KNOWN | KEYWORD ;
-symbol_known: CF_SYM_KNOWN | KEYWORD ;
+symbol_known: CF_SYM_KNOWN ;
 
 /* Switches */