Merge pull request #10926 from blueyed/fix-echon-q

Check got_int in msg_multiline_attr with ex_echo
This commit is contained in:
Björn Linse
2019-09-04 15:31:56 +02:00
committed by GitHub
3 changed files with 38 additions and 4 deletions

View File

@@ -20894,7 +20894,7 @@ void ex_echo(exarg_T *eap)
char *tofree = encode_tv2echo(&rettv, NULL);
if (*tofree != NUL) {
msg_ext_set_kind("echo");
msg_multiline_attr(tofree, echo_attr);
msg_multiline_attr(tofree, echo_attr, true);
}
xfree(tofree);
}