diff src/diff.c @ 4236:23ce9a61bdc2 v7.3.869

updated for version 7.3.869 Problem: bufwinnr() matches buffers in other tabs. Solution: For bufwinnr() and ? only match buffers in the current tab. (Alexey Radkov)
author Bram Moolenaar <bram@vim.org>
date Tue, 19 Mar 2013 14:25:54 +0100
parents 64427849c158
children 04736b4030ec
line wrap: on
line diff
--- a/src/diff.c
+++ b/src/diff.c
@@ -2152,7 +2152,7 @@ ex_diffgetput(eap)
 	    i = atol((char *)eap->arg);
 	else
 	{
-	    i = buflist_findpat(eap->arg, p, FALSE, TRUE);
+	    i = buflist_findpat(eap->arg, p, FALSE, TRUE, FALSE);
 	    if (i < 0)
 		return;		/* error message already given */
 	}