Don't suppress output for printf --help

Fixes #746.
This commit is contained in:
Kevin Ballard 2014-09-21 23:48:47 -07:00
parent 7d7a636f24
commit cb40507b7b

View file

@ -4018,7 +4018,7 @@ static int internal_help(const wchar_t *cmd)
{
CHECK(cmd, 0);
return contains(cmd, L"for", L"while", L"function",
L"if", L"end", L"switch", L"case", L"count");
L"if", L"end", L"switch", L"case", L"count", L"printf");
}