summaryrefslogtreecommitdiffstats
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
parent0abe0522d0e52b50c6eab52323be558eb56fe95e (diff)
patch 7.4.2283v7.4.2283
Problem: Part of ":oldfiles" command isn't cleared. (Lifepillar) Solution: Clear the rest of the line. (closes 1018)
-rw-r--r--src/ex_cmds.c1
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 9f2cd9540f..b38171b49e 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();
diff --git a/src/version.c b/src/version.c
index 5743911f6c..0c2bbffbaf 100644
--- a/src/version.c
+++ b/src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2283,
+/**/
2282,
/**/
2281,