From 553bf47191bb25bfd99922eb77b372ff5bab193f Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Wed, 13 Feb 2019 20:55:19 -0600 Subject: [PATCH] Fix short arg -S for --shell Closes #5660 --- src/builtin_read.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin_read.cpp b/src/builtin_read.cpp index 9c767664f..4c7895882 100644 --- a/src/builtin_read.cpp +++ b/src/builtin_read.cpp @@ -54,7 +54,7 @@ struct read_cmd_opts_t { bool one_line = false; }; -static const wchar_t *const short_options = L":ac:d:ghiLlm:n:p:suxzP:UR:LB"; +static const wchar_t *const short_options = L":ac:d:ghiLlm:n:p:sSuxzP:UR:LB"; static const struct woption long_options[] = { {L"array", no_argument, NULL, 'a'}, {L"command", required_argument, NULL, 'c'},