summaryrefslogtreecommitdiff
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-28 17:08:17 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-28 17:08:17 +0200
commit885c00eabe6d1fd757d4f0eb531ad3a15a35ec04 (patch)
tree73c3272f8b755d1ead3f08479a34b5a0276946c6 /src/ex_cmds.c
parent0abe0522d0e52b50c6eab52323be558eb56fe95e (diff)
downloadvim-git-885c00eabe6d1fd757d4f0eb531ad3a15a35ec04.tar.gz
patch 7.4.2283v7.4.2283
Problem: Part of ":oldfiles" command isn't cleared. (Lifepillar) Solution: Clear the rest of the line. (closes 1018)
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 9f2cd9540..b38171b49 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -8471,6 +8471,7 @@ ex_oldfiles(exarg_T *eap UNUSED)
msg_outnum((long)nr);
MSG_PUTS(": ");
msg_outtrans(fname);
+ msg_clr_eos();
msg_putchar('\n');
out_flush(); /* output one line at a time */
ui_breakcheck();