# HG changeset patch
# User Patrick Mezard <pmezard@gmail.com>
# Date 1300134714 -3600
#      Mon Mar 14 21:31:54 2011 +0100
# Node ID 56e71e7d2ba2c2710246737ea09501d840dd94e6
# Parent  328ce8a405ac6235f927a598fff13e91f6b46def
eol: no need to accumulate files when checking all changesets

Just check the files touched by the changesets.

diff --git a/hgext/eol.py b/hgext/eol.py
--- a/hgext/eol.py
+++ b/hgext/eol.py
@@ -170,7 +170,7 @@
 
     def checkrev(self, repo, ctx, files):
         failed = []
-        for f in files:
+        for f in (files or ctx.files()):
             if f not in ctx:
                 continue
             for pattern, style in self.cfg.items('patterns'):
@@ -207,10 +207,10 @@
     files = set()
     revs = set()
     for rev in xrange(repo[node].rev(), len(repo)):
-        ctx = repo[rev]
-        files.update(ctx.files())
         revs.add(rev)
         if headsonly:
+            ctx = repo[rev]
+            files.update(ctx.files())
             for pctx in ctx.parents():
                 revs.discard(pctx.rev())
     failed = []