commit | 98d1069a9cc6f1b439be154aeae0ed32a598e855 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Aug 29 00:08:39 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Aug 29 00:08:39 2022 +0100 |
tree | 8db7ba49add42eb3d2f9657a1e142c61393e2695 | |
parent | 926218b5dad0dcdc273ccd92436a72f038d222c4 [diff] [blame] |
patch 9.0.0312: test for cmdheight zero fails Problem: Test for cmdheight zero fails. Solution: Do not close the messages window for CTRL-C.
diff --git a/src/normal.c b/src/normal.c index 12b611e..926f504 100644 --- a/src/normal.c +++ b/src/normal.c
@@ -6822,7 +6822,7 @@ else if (no_reason) { #ifdef HAS_MESSAGE_WINDOW - if (popup_message_win_visible()) + if (!cap->arg && popup_message_win_visible()) popup_hide_message_win(); else #endif