diff options
author | Maria Matejka <mq@ucw.cz> | 2022-03-25 19:15:11 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-04 15:37:41 +0200 |
commit | d4bcef0e0bfee911d403c0cf830de3e3007eeb38 (patch) | |
tree | 50bff8f853eab7efb6b6a6ad718449d5758b5be1 /conf/cf-lex.l | |
parent | cd9550b24487ac7327b0234fd825f4214fdf7b16 (diff) |
Filter operations: bitwise AND and OR
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r-- | conf/cf-lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index c9d2f5a5..b9457a83 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -347,7 +347,7 @@ else: { return DDOT; } -[={}:;,.()+*/%<>~\[\]?!\|-] { +[={}:;,.()+*/%<>~\[\]?!\|&-] { return yytext[0]; } |