aboutsummaryrefslogtreecommitdiffhomepage
path: root/parse_tree.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-10-12 01:46:22 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-10-12 01:47:31 -0700
commit77e358a001eea9a36e0c466b0af253d992c370bd (patch)
tree49efc527ae6f4f9e1da88c1ed970f5a714f40d7f /parse_tree.h
parent5490f54d005dcc9b35409315aefc698203b81ff1 (diff)
Support for parsing e.g. 'command --' as a plain statement, instead of
executing the command '--'.
Diffstat (limited to 'parse_tree.h')
-rw-r--r--parse_tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/parse_tree.h b/parse_tree.h
index f6e913c2..c46eb911 100644
--- a/parse_tree.h
+++ b/parse_tree.h
@@ -114,6 +114,8 @@ enum parse_keyword_t
parse_keyword_builtin,
/* The following are not really keywords but are necessary for e.g. "command --help" to work */
+ parse_keyword_dash,
+ parse_keyword_dashdash,
parse_keyword_dash_h,
parse_keyword_dashdash_help,