# HG changeset patch # User Christian Brabandt # Date 1471992305 -7200 # Node ID d63a89b526ea705d584670e2113cf55c916374aa # Parent ff39af40ed2b5d3be5e60a3e76b4319b438ff91a commit https://github.com/vim/vim/commit/d6f2ee32dcfa18c781ef157918b524318a2215a2 Author: Bram Moolenaar Date: Wed Aug 24 00:30:52 2016 +0200 patch 7.4.2246 Problem: Oldfiles test fails. Solution: Include missing changes. diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -8456,34 +8456,19 @@ ex_oldfiles(exarg_T *eap UNUSED) list_T *l = get_vim_var_list(VV_OLDFILES); listitem_T *li; int nr = 0; - char_u *reg_pat = NULL; char_u *fname; - regmatch_T regmatch; if (l == NULL) msg((char_u *)_("No old files")); else { - if (*eap->arg != NUL) - { - if (skip_vimgrep_pat(eap->arg, ®_pat, NULL) == NULL) - { - EMSG(_(e_invalpat)); - return; - } - regmatch.regprog = vim_regcomp(reg_pat, p_magic ? RE_MAGIC : 0); - if (regmatch.regprog == NULL) - return; - } - msg_start(); msg_scroll = TRUE; for (li = l->lv_first; li != NULL && !got_int; li = li->li_next) { ++nr; fname = get_tv_string(&li->li_tv); - if (reg_pat == NULL || *reg_pat == NUL - || vim_regexec(®match, fname, (colnr_T)0)) + if (!message_filtered(fname)) { msg_outnum((long)nr); MSG_PUTS(": "); @@ -8493,8 +8478,6 @@ ex_oldfiles(exarg_T *eap UNUSED) ui_breakcheck(); } } - if (*eap->arg != NUL) - vim_regfree(regmatch.regprog); /* Assume "got_int" was set to truncate the listing. */ got_int = FALSE; diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 2246, +/**/ 2245, /**/ 2244,