mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 21:21:15 -03:00
Fixed crash in history builtin for inputs like : history --search -prefix "echo"
This commit is contained in:
@@ -3622,7 +3622,7 @@ static int builtin_history( parser_t &parser, wchar_t **argv )
|
|||||||
woptind = 0;
|
woptind = 0;
|
||||||
history_t *history = reader_get_history();
|
history_t *history = reader_get_history();
|
||||||
|
|
||||||
while((opt = wgetopt_long( argc, argv, L"pdsc", long_options, &opt_index )) != -1)
|
while((opt = wgetopt_long_only( argc, argv, L"pdscvl", long_options, &opt_index )) != -1)
|
||||||
{
|
{
|
||||||
switch(opt)
|
switch(opt)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user