Skip to content

Commit 77401ad

Browse files
committed
patch 7.4.2245
Problem: Filter test fails. Solution: Include missing changes.
1 parent 7b668e8 commit 77401ad

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/buffer.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2931,12 +2931,14 @@ buflist_list(exarg_T *eap)
29312931
|| (vim_strchr(eap->arg, '#')
29322932
&& (buf == curbuf || curwin->w_alt_fnum != buf->b_fnum)))
29332933
continue;
2934-
msg_putchar('\n');
29352934
if (buf_spname(buf) != NULL)
29362935
vim_strncpy(NameBuff, buf_spname(buf), MAXPATHL - 1);
29372936
else
29382937
home_replace(buf, buf->b_fname, NameBuff, MAXPATHL, TRUE);
2938+
if (message_filtered(NameBuff))
2939+
continue;
29392940

2941+
msg_putchar('\n');
29402942
len = vim_snprintf((char *)IObuff, IOSIZE - 20, "%3d%c%c%c%c%c \"%s\"",
29412943
buf->b_fnum,
29422944
buf->b_p_bl ? ' ' : 'u',

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,8 @@ static char *(features[]) =
763763

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2245,
766768
/**/
767769
2244,
768770
/**/

0 commit comments

Comments
 (0)