comparison src/normal.c @ 29948:29e4cd9e66de v9.0.0312

patch 9.0.0312: test for cmdheight zero fails Commit: https://github.com/vim/vim/commit/98d1069a9cc6f1b439be154aeae0ed32a598e855 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 29 00:08:39 2022 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Mon, 29 Aug 2022 01:15:02 +0200
parents 34c5647efe7a
children bb0e525e1393
comparison
equal deleted inserted replaced
29947:85fe535ba7ff 29948:29e4cd9e66de
6820 redraw_curbuf_later(UPD_INVERTED); 6820 redraw_curbuf_later(UPD_INVERTED);
6821 } 6821 }
6822 else if (no_reason) 6822 else if (no_reason)
6823 { 6823 {
6824 #ifdef HAS_MESSAGE_WINDOW 6824 #ifdef HAS_MESSAGE_WINDOW
6825 if (popup_message_win_visible()) 6825 if (!cap->arg && popup_message_win_visible())
6826 popup_hide_message_win(); 6826 popup_hide_message_win();
6827 else 6827 else
6828 #endif 6828 #endif
6829 vim_beep(BO_ESC); 6829 vim_beep(BO_ESC);
6830 } 6830 }