aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.c
diff options
context:
space:
mode:
authorGravatar Christopher Nilsson <christopher@otherchirps.net>2011-01-11 23:22:27 +1100
committerGravatar Christopher Nilsson <christopher@otherchirps.net>2011-01-11 23:22:27 +1100
commit2583638f4bb0b1b46f82f6ed2320a644f2c8e64b (patch)
tree54b3f58d19ea5519402472a14e740e31f27bfa81 /builtin.c
parentdcecab384acc003beb43859ee2143c9b78795d55 (diff)
parent11360b018fd797a60705b0aa74c8001d006562ed (diff)
Merge commit 'refs/merge-requests/8' of git://gitorious.org/fish-shell/fish-shell into merge_request_8
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin.c b/builtin.c
index 13694aac..41a95260 100644
--- a/builtin.c
+++ b/builtin.c
@@ -2070,7 +2070,7 @@ static int builtin_read( wchar_t **argv )
}
,
{
- L"shell", required_argument, 0, 's'
+ L"shell", no_argument, 0, 's'
}
,
{
@@ -3871,7 +3871,7 @@ static int internal_help( wchar_t *cmd )
{
CHECK( cmd, 0 );
return contains( cmd, L"for", L"while", L"function",
- L"if", L"end", L"switch" );
+ L"if", L"end", L"switch", L"count" );
}