From 02a07164f34462b8ce7c26594746ae587206a96e Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Fri, 22 Aug 2014 09:29:37 -0700 Subject: [PATCH] Make `commandline -P` actually work `commandline --paging-mode` worked but the short flags list accidentally omitted the documented `-P`. --- builtin_commandline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin_commandline.cpp b/builtin_commandline.cpp index 0af6f6565..0bc60dca2 100644 --- a/builtin_commandline.cpp +++ b/builtin_commandline.cpp @@ -326,7 +326,7 @@ static int builtin_commandline(parser_t &parser, wchar_t **argv) int opt = wgetopt_long(argc, argv, - L"abijpctwforhI:CLSs", + L"abijpctwforhI:CLSsP", long_options, &opt_index); if (opt == -1)