Changed "elseif" to "else if"

This commit is contained in:
ridiculousfish
2012-09-03 13:24:01 -07:00
parent ff124465fd
commit 1a59346b51
9 changed files with 117 additions and 58 deletions

View File

@@ -26,7 +26,7 @@ bool parser_keywords_is_switch( const wcstring &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', 'elseif', 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'. This does not handle "else if" which is more complicated.
\param cmd The command name to test
\return 1 of the command parameter is a command, 0 otherwise