Unverified Commit 4ad108d1 by Edward Thomson Committed by GitHub

Merge pull request #4742 from neithernut/revwalk-remove_tautological_condition

revwalk: remove tautologic condition for hiding a commit
parents b00a09b0 a4ffbae4
...@@ -426,8 +426,8 @@ static int limit_list(git_commit_list **out, git_revwalk *walk, git_commit_list ...@@ -426,8 +426,8 @@ static int limit_list(git_commit_list **out, git_revwalk *walk, git_commit_list
break; break;
} }
if (!commit->uninteresting && walk->hide_cb && walk->hide_cb(&commit->oid, walk->hide_cb_payload)) if (walk->hide_cb && walk->hide_cb(&commit->oid, walk->hide_cb_payload))
continue; continue;
time = commit->time; time = commit->time;
p = &git_commit_list_insert(commit, p)->next; p = &git_commit_list_insert(commit, p)->next;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment