aboutsummaryrefslogtreecommitdiff
path: root/util/newconfig/config.g
diff options
context:
space:
mode:
Diffstat (limited to 'util/newconfig/config.g')
-rw-r--r--util/newconfig/config.g6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g
index 0952279be5..09e60eb823 100644
--- a/util/newconfig/config.g
+++ b/util/newconfig/config.g
@@ -1094,14 +1094,14 @@ parser Config:
( DEFAULT
( value {{ setdefault(ID, value) }}
| NONE {{ setnodefault(ID) }}
- ) {{ d |= 1 }}
+ ) {{ d = d | 1 }}
| FORMAT STR {{ setformat(ID, dequote(STR)) }}
| EXPORT
( ALWAYS {{ setexported(ID) }}
| USED {{ setexportable(ID) }}
| NEVER {{ setnoexport(ID) }}
- ) {{ d |= 2 }}
- | COMMENT STR {{ setcomment(ID, dequote(STR)); d |= 4 }}
+ ) {{ d = d | 2 }}
+ | COMMENT STR {{ setcomment(ID, dequote(STR)); d = d | 4 }}
)+ {{ return d }}
rule define: DEFINE ID {{ newoption(ID) }}