diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/confbase.Y | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index 4385462..a2df85d 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -57,6 +57,7 @@ CF_DECLS %type <time> datetime %type <a> ipa %type <px> prefix prefix_or_ipa +%type <t> text_or_none %nonassoc PREFIX_DUMMY %nonassoc '=' '<' '>' '~' '.' GEQ LEQ NEQ AND OR PO PC @@ -153,6 +154,11 @@ datetime: } ; +text_or_none: + TEXT { $$ = $1; } + | { $$ = NULL; } + ; + CF_CODE CF_END |