summaryrefslogtreecommitdiff
path: root/util/epist/epist.y
diff options
context:
space:
mode:
Diffstat (limited to 'util/epist/epist.y')
-rw-r--r--util/epist/epist.y4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/epist/epist.y b/util/epist/epist.y
index f91162f7..d187e96f 100644
--- a/util/epist/epist.y
+++ b/util/epist/epist.y
@@ -24,7 +24,7 @@ void yyerror(const char *c) {
%}
-%token OBRACE EBRACE SEMICOLON DASH NUMBER QUOTES WORD BINDING OPTIONS
+%token OBRACE EBRACE SEMICOLON DASH NUMBER QUOTES WORD BINDING OPTIONS TRUE FALSE
%%
@@ -86,6 +86,8 @@ parameter:
| NUMBER { ((parser*)parser_obj)->setArgumentNum($1); }
| DASH NUMBER { ((parser*)parser_obj)->setArgumentNegNum($2); }
| QUOTES { ((parser*)parser_obj)->setArgumentStr($1); }
+ | TRUE { ((parser*)parser_obj)->setArgumentTrue($1); }
+ | FALSE { ((parser*)parser_obj)->setArgumentFalse($1); }
;
options_keyword: