mercurial/commands.py
changeset 1337 d4b25df77a9e
parent 1331 cfae1ed2d61f
child 1342 5a42da1db402
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -74,6 +74,10 @@ def walkchangerevs(ui, repo, cwd, pats, 
 
     "iter", rev, None: in-order traversal of the revs earlier iterated
     over with "add" - use to display data'''
+
+    if repo.changelog.count() == 0:
+        return [], False
+
     cwd = repo.getcwd()
     if not pats and cwd:
         opts['include'] = [os.path.join(cwd, i) for i in opts['include']]
@@ -1055,6 +1059,7 @@ def grep(ui, repo, pattern, *pats, **opt
     skip = {}
     changeiter, getchange = walkchangerevs(ui, repo, repo.getcwd(), pats, opts)
     count = 0
+    incrementing = False
     for st, rev, fns in changeiter:
         if st == 'window':
             incrementing = rev