mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.0289: Vim9: :echo did not clear the rest of the line
Problem: Vim9: :echo did not clear the rest of the line. Solution: Call msg_clr_eos(). (Ken Takata, closes #5668)
This commit is contained in:
parent
0062c2d4f9
commit
e0807ea4a7
@ -738,6 +738,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
289,
|
||||
/**/
|
||||
288,
|
||||
/**/
|
||||
|
@ -527,6 +527,8 @@ call_def_function(
|
||||
&atstart, &needclr);
|
||||
clear_tv(tv);
|
||||
}
|
||||
if (needclr)
|
||||
msg_clr_eos();
|
||||
ectx.ec_stack.ga_len -= count;
|
||||
}
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user