From cb40507b7bc2a88d49af1bdcbbd092f97ae7aa69 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Sun, 21 Sep 2014 23:48:47 -0700 Subject: [PATCH] Don't suppress output for `printf --help` Fixes #746. --- builtin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin.cpp b/builtin.cpp index 36be7e9b6..98ae9f63e 100644 --- a/builtin.cpp +++ b/builtin.cpp @@ -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"); }