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);
}

View File

@@ -222,12 +222,12 @@ int msg_attr(const char *s, const int attr)
}
/// similar to msg_outtrans_attr, but support newlines and tabs.
void msg_multiline_attr(const char *s, int attr)
void msg_multiline_attr(const char *s, int attr, bool check_int)
FUNC_ATTR_NONNULL_ALL
{
const char *next_spec = s;
while (next_spec != NULL) {
while (next_spec != NULL && (!check_int || !got_int)) {
next_spec = strpbrk(s, "\t\n\r");
if (next_spec != NULL) {
@@ -306,7 +306,7 @@ bool msg_attr_keep(char_u *s, int attr, bool keep, bool multiline)
s = buf;
if (multiline) {
msg_multiline_attr((char *)s, attr);
msg_multiline_attr((char *)s, attr, false);
} else {
msg_outtrans_attr(s, attr);
}