mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
commandline: Remove stray "w" short option
Fun fact: `commandline -w` hits an assert and crashes.
This commit is contained in:
parent
3fe9353599
commit
38f37b7abc
1 changed files with 1 additions and 1 deletions
|
@ -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'},
|
||||
|
|
Loading…
Reference in a new issue