From dd0bade7238ec096879c9d1cec483705297c5415 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 24 Sep 2015 20:45:38 +0200 Subject: [PATCH] Only process the first matching filter --- UApp.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UApp.pas b/UApp.pas index a73d0e3..4662fa8 100644 --- a/UApp.pas +++ b/UApp.pas @@ -137,7 +137,10 @@ begin for lineFilter in FLineFilters do begin if lineFilter.Matches(line, groupRanges) then + begin WriteContent(line, lineFilter.Filters, groupRanges); + Break; + end; end; end;