Commit 105db4c5 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

conhost: Fix wrapping search in edit_line_find_in_history.

parent 849e521d
......@@ -691,6 +691,7 @@ static void edit_line_find_in_history( struct console *console )
unsigned int len, oldoffset;
WCHAR *line;
if (!console->history_index) return;
if (ctx->history_index && ctx->history_index == console->history_index)
{
start_pos--;
......@@ -702,7 +703,7 @@ static void edit_line_find_in_history( struct console *console )
line = edit_line_history(console, ctx->history_index);
if (ctx->history_index) ctx->history_index--;
else ctx->history_index = console->history_index;
else ctx->history_index = console->history_index - 1;
len = lstrlenW(line) + 1;
if (len >= ctx->cursor && !memcmp( ctx->buf, line, ctx->cursor * sizeof(WCHAR) ))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment