0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.4156: fileinfo message overwrites echo'ed message

Problem:    Fileinfo message overwrites echo'ed message.
Solution:   Reset need_fileinfo when displaying a message. (Rob Pilling,
            closes #9569)
This commit is contained in:
Rob Pilling
2022-01-20 14:44:38 +00:00
committed by Bram Moolenaar
parent 7e93577a95
commit 726f7f91fd
4 changed files with 46 additions and 0 deletions

View File

@@ -181,6 +181,8 @@ msg_attr_keep(
< (int)(Rows - cmdline_row - 1) * Columns + sc_col)
set_keep_msg((char_u *)s, 0);
need_fileinfo = FALSE;
vim_free(buf);
--entered;
return retval;
@@ -1420,7 +1422,10 @@ msg_start(void)
int did_return = FALSE;
if (!msg_silent)
{
VIM_CLEAR(keep_msg);
need_fileinfo = FALSE;
}
#ifdef FEAT_EVAL
if (need_clr_eos)
@@ -2163,6 +2168,8 @@ msg_puts_attr_len(char *str, int maxlen, int attr)
msg_puts_printf((char_u *)str, maxlen);
else
msg_puts_display((char_u *)str, maxlen, attr, FALSE);
need_fileinfo = FALSE;
}
/*