diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-18 22:02:04 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-18 22:02:04 -0700 |
commit | 7de4473f6a553f65840e9261c0fd4965298e1d16 (patch) | |
tree | a50c33a7ca3b6a8b57d766d29872d27bc5e83da4 /revision.c | |
parent | Merge branch 'jc/fmt-patch' into next (diff) | |
parent | get_sha1() shorthands for blob/tree objects (diff) | |
download | tgif-7de4473f6a553f65840e9261c0fd4965298e1d16.tar.xz |
Merge branch 'lt/xsha1' into next
* lt/xsha1:
get_sha1() shorthands for blob/tree objects
Fix uninteresting tags in new revision parsing
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.c b/revision.c index dbd54da5ba..113dd5a89f 100644 --- a/revision.c +++ b/revision.c @@ -152,6 +152,7 @@ static struct commit *handle_commit(struct rev_info *revs, struct object *object if (parse_commit(commit) < 0) die("unable to parse commit %s", name); if (flags & UNINTERESTING) { + commit->object.flags |= UNINTERESTING; mark_parents_uninteresting(commit); revs->limited = 1; } |