commandline: Remove stray "w" short option

Fun fact: `commandline -w` hits an assert and crashes.
This commit is contained in:
Fabian Homborg 2019-02-19 10:04:37 +01:00
parent 3fe9353599
commit 38f37b7abc

View file

@ -201,7 +201,7 @@ int builtin_commandline(parser_t &parser, io_streams_t &streams, wchar_t **argv)
return STATUS_CMD_ERROR;
}
static const wchar_t *const short_options = L":abijpctwforhI:CLSsP";
static const wchar_t *const short_options = L":abijpctforhI:CLSsP";
static const struct woption long_options[] = {{L"append", no_argument, NULL, 'a'},
{L"insert", no_argument, NULL, 'i'},
{L"replace", no_argument, NULL, 'r'},