diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-04-07 16:17:39 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-04-07 16:17:39 +0200 |
commit | 52604f2454e5369f861d3ce34764f74a0999c773 (patch) | |
tree | 8a0f8e1c5ab99f88e72b123e56adf2b1bb35d973 /src/eval.c | |
parent | 3bab93998d01a01b7f2a071fa3b8054bb0094625 (diff) | |
download | vim-git-52604f2454e5369f861d3ce34764f74a0999c773.tar.gz |
patch 8.0.0547: extra line break in verbosefilev8.0.0547
Problem: Extra line break in verbosefile when using ":echomsg". (Ingo
Karkat)
Solution: Don't call msg_start(). (closes #1618)
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 261ece85c..5f589eb0b 100644 --- a/src/eval.c +++ b/src/eval.c @@ -8328,7 +8328,6 @@ ex_execute(exarg_T *eap) * follows is displayed on a new line when scrolling back at the * more prompt. */ msg_sb_eol(); - msg_start(); } if (eap->cmdidx == CMD_echomsg) |