Small fixes in Documentation/git-mv.txt
[gitweb.git] / rev-list.c
index 6e6ffde39600f048f5c365dd478256feba321db9..e17f928061250c24465e1b96f89a18acb98a748c 100644 (file)
@@ -124,8 +124,6 @@ static int filter_commit(struct commit * commit)
                stop_traversal=1;
                return CONTINUE;
        }
-       if (max_count != -1 && !max_count--)
-               return STOP;
        if (no_merges && (commit->parents && commit->parents->next))
                return CONTINUE;
        if (paths && dense) {
@@ -148,6 +146,9 @@ static int process_commit(struct commit * commit)
                return CONTINUE;
        }
 
+       if (max_count != -1 && !max_count--)
+               return STOP;
+
        show_commit(commit);
 
        return CONTINUE;