aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser_keywords.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-09-01 01:46:14 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-09-01 01:46:14 -0700
commitcc1395797e78a26583461333199181b4f8ec0b13 (patch)
tree9f191547887932abe9e6a34d27349085453ed622 /parser_keywords.cpp
parent122791646ec7dc421a679cb39cce7a8cbc0a7594 (diff)
First stab at elseif implementation
Diffstat (limited to 'parser_keywords.cpp')
-rw-r--r--parser_keywords.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/parser_keywords.cpp b/parser_keywords.cpp
index efc2ff6e..8a5f1b74 100644
--- a/parser_keywords.cpp
+++ b/parser_keywords.cpp
@@ -43,6 +43,7 @@ bool parser_keywords_is_subcommand( const wcstring &cmd )
L"while",
L"exec",
L"if",
+ L"elseif",
L"and",
L"or",
L"not" );
@@ -68,6 +69,7 @@ bool parser_keywords_is_reserved( const wcstring &word)
L"end",
L"case",
L"else",
+ L"elseif",
L"return",
L"continue",
L"break" );