[PATCH] Remove use of SHOWN flag
From: Jon Seymour <hidden>
Date: 2016-06-15 22:42:01
Subsystem:
the rest · Maintainer:
Linus Torvalds
Now that duplicates are elided early, there is no need for the SHOWN flag. This patch removes the SHOWN flag and its uses from rev-list.c Signed-off-by: Jon Seymour <redacted> --- rev-list.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) 28294b1e139ea3f7c08814e022246e42f9ab9fa3
diff --git a/rev-list.c b/rev-list.c
--- a/rev-list.c
+++ b/rev-list.c@@ -8,7 +8,6 @@ #define SEEN (1u << 0) #define INTERESTING (1u << 1) #define COUNTED (1u << 2) -#define SHOWN (1u << 3) static const char rev_list_usage[] = "usage: git-rev-list [OPTION] commit-id <commit-id>\n"
@@ -42,7 +41,6 @@ static int topo_order = 0; static void show_commit(struct commit *commit) { - commit->object.flags |= SHOWN; if (show_breaks) { prefix = "| "; if (commit->object.flags & DISCONTINUITY) {
@@ -72,7 +70,7 @@ static int filter_commit(struct commit * { if (stop_traversal && (commit->object.flags & BOUNDARY)) return STOP; - if (commit->object.flags & (UNINTERESTING|SHOWN)) + if (commit->object.flags & UNINTERESTING) return CONTINUE; if (min_age != -1 && (commit->date > min_age)) return CONTINUE; ------------