diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-06-27 14:49:28 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-09-12 16:31:45 +0200 |
commit | c0231b092960c66dd17119f75ce3d2b4101f42aa (patch) | |
tree | e673c735849c6067333df0d9cd93ffe12235b077 | |
parent | fdd39c81bd4cb04dc9f0f5e5cc8db95909b76cbf (diff) |
Conf: Remove toksym from symbol_known
No need to have toksym in symbol_known, as defined symbols are preferred
(by scope) to keywords anyway. Adding it just creates grammar conflicts.
-rw-r--r-- | conf/confbase.Y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index c62731b5..2efeb29f 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -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 */ |