diff options
author | Daniel Hahler <git@thequod.de> | 2019-09-04 13:30:11 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-09-04 13:30:11 +0200 |
commit | ac6fd11fa128b2a28611f54c478e84f43f728aea (patch) | |
tree | c2a6409f9b3ad5d5bbeb0caae67f85f5be38fb01 /src/nvim/eval.c | |
parent | 4556bb90facae5af15ef329e2a63d9751d380db9 (diff) | |
download | rneovim-ac6fd11fa128b2a28611f54c478e84f43f728aea.tar.gz rneovim-ac6fd11fa128b2a28611f54c478e84f43f728aea.tar.bz2 rneovim-ac6fd11fa128b2a28611f54c478e84f43f728aea.zip |
only check got_int with ex_echo
Ref: https://github.com/neovim/neovim/pull/10926#discussion_r320706446
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 683d44a245..b9a0913baa 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -20903,7 +20903,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); } |