aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser_keywords.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-26 19:18:46 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2011-12-26 19:18:46 -0800
commit8d2f107d61a8b0e099ab9a59b8a32c236da5a5fc (patch)
tree89f718ab74f8400332534aee237c6f925348f05c /parser_keywords.h
parent3f16ace6784caab54fb054836ee93902e9701913 (diff)
Some changes to migrate towards C++ and a multithreaded model
Diffstat (limited to 'parser_keywords.h')
-rw-r--r--parser_keywords.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser_keywords.h b/parser_keywords.h
index 53d9822b..e8212334 100644
--- a/parser_keywords.h
+++ b/parser_keywords.h
@@ -9,7 +9,7 @@ Functions having to do with parser keywords, like testing if a function is a blo
/**
Return valuse for parser_keywords_is_switch()
*/
-enum
+enum
{
ARG_NON_SWITCH,
ARG_SWITCH,
@@ -27,7 +27,7 @@ int parser_keywords_is_switch( const wchar_t *cmd );
/**
- Tests if the specified commands parameters should be interpreted as another command, which will be true if the command is either 'command', 'exec', 'if', 'while' or 'builtin'.
+ Tests if the specified commands parameters should be interpreted as another command, which will be true if the command is either 'command', 'exec', 'if', 'while' or 'builtin'.
\param cmd The command name to test
\return 1 of the command parameter is a command, 0 otherwise