From 308d4b67f3295b68c9aa54f7f3e558a89aedfdf3 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 2 Mar 2014 15:44:14 -0400 Subject: [PATCH] fix combining of FIlterValues --- Annex/View.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Annex/View.hs b/Annex/View.hs index c572c6de4e..7c187befd2 100644 --- a/Annex/View.hs +++ b/Annex/View.hs @@ -155,7 +155,7 @@ combineViewFilter old@(ExcludeValues olds) (ExcludeValues news) | combined == old = (combined, Unchanged) | otherwise = (combined, Narrowing) where - combined = FilterValues (S.union olds news) + combined = ExcludeValues (S.union olds news) combineViewFilter (FilterValues _) newglob@(FilterGlob _) = (newglob, Widening) combineViewFilter (FilterGlob oldglob) new@(FilterValues s)