mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
edit: Fix completion of arguments other than the first one
This commit is contained in:
parent
73669f1b03
commit
e4f13f9256
@ -364,7 +364,7 @@ static void complete(int list)
|
||||
|
||||
end = cmdbuf_pos;
|
||||
start = end;
|
||||
while (start > 0 && cmdbuf[start] != ' ')
|
||||
while (start > 0 && cmdbuf[start - 1] != ' ')
|
||||
start--;
|
||||
plen = end - start;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user