Adam Simpkins [off-list ref] writes:
quoted hunk
diff --git a/revision.c b/revision.c
index 1341f3d..181fb0b 100644
--- a/revision.c
+++ b/revision.c
@@ -1697,7 +1697,7 @@ static struct commit *get_revision_internal(struct rev_info *revs)
* switch to boundary commits output mode.
*/
revs->boundary = 2;
- return get_revision(revs);
+ return get_revision_internal(revs);
}
/*
This hunk first got me worried, but this is a simple bugfix to 7fefda5
(log and rev-list: add --graph option, 2008-05-04) and does not break
callers without --graph option.
Looks good, thanks.