Module: wine Branch: master Commit: 12cf3459b5ae561f012b4c47dd4775c428d026e6 URL: https://source.winehq.org/git/wine.git/?a=commit;h=12cf3459b5ae561f012b4c47d... Author: Hugh McMaster <hugh.mcmaster(a)outlook.com> Date: Tue Dec 14 22:43:15 2021 +1100 conhost: Process Ctrl-M key input. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50526 Signed-off-by: Hugh McMaster <hugh.mcmaster(a)outlook.com> Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- programs/conhost/conhost.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/conhost/conhost.c b/programs/conhost/conhost.c index 05447d52dd5..94dd050fd2f 100644 --- a/programs/conhost/conhost.c +++ b/programs/conhost/conhost.c @@ -1129,6 +1129,7 @@ static const struct edit_line_key_entry win32_key_map_ctrl[] = { VK_RIGHT, edit_line_move_right_word }, { VK_END, edit_line_kill_suffix }, { VK_HOME, edit_line_kill_prefix }, + { 'M', edit_line_done }, { 0 } };