commit | 885c00eabe6d1fd757d4f0eb531ad3a15a35ec04 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Aug 28 17:08:17 2016 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Aug 28 17:08:17 2016 +0200 |
tree | 73c3272f8b755d1ead3f08479a34b5a0276946c6 | |
parent | 0abe0522d0e52b50c6eab52323be558eb56fe95e [diff] [blame] |
patch 7.4.2283 Problem: Part of ":oldfiles" command isn't cleared. (Lifepillar) Solution: Clear the rest of the line. (closes 1018)
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 9f2cd95..b38171b 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c
@@ -8471,6 +8471,7 @@ 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();