mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Fix the fix for commandline -i
in binds
This commit is contained in:
parent
4acea72700
commit
4b7dc525b8
1 changed files with 1 additions and 1 deletions
|
@ -3129,7 +3129,7 @@ const wchar_t *reader_readline(int nchars)
|
|||
// only allow commands on the first key; otherwise, we might
|
||||
// have data we need to insert on the commandline that the
|
||||
// commmand might need to be able to see.
|
||||
c = input_readch(i == 1);
|
||||
c = input_readch(false);
|
||||
if ((!wchar_private(c)) && (c>31) && (c != 127))
|
||||
{
|
||||
arr[i]=c;
|
||||
|
|
Loading…
Reference in a new issue