From: Jonas Fonseca Date: Tue, 12 Sep 2006 11:35:05 +0000 (+0200) Subject: Remove fprintf stuff X-Git-Tag: tig-0.6~23 X-Git-Url: https://git.distorted.org.uk/~mdw/tig/commitdiff_plain/6c1864915391b8c448516ec4147e0782db69f0aa?hp=b668954412c6709e54c22991b3f7aff012050d7b Remove fprintf stuff --- diff --git a/tig.c b/tig.c index 7121a42..e707d68 100644 --- a/tig.c +++ b/tig.c @@ -2806,8 +2806,6 @@ static size_t graph_last_rev; static void push_rev_stack(struct rev_stack *stack, char *parent) { - fprintf(stderr, " (%s)", parent); - /* Combine duplicate parents lines. */ if (stack->size > 0 && !strncmp(stack->rev[stack->size - 1], parent, SIZEOF_REV)) @@ -2877,8 +2875,6 @@ update_rev_graph(struct commit *commit) size_t stackpos = 0; size_t i; - fprintf(stderr, "\n%p <%s> ", graph, commit->id); - /* First traverse all lines of revisions up to the active one. */ for (stackpos = 0; stackpos < stack->size; stackpos++) { if (!strcmp(stack->rev[stackpos], commit->id)) @@ -2920,7 +2916,6 @@ main_read(struct view *view, char *line) view->line[view->lines++].data = commit; string_copy(commit->id, line); commit->refs = get_refs(commit->id); - fprintf(stderr, "\n%p [%s]", &graph_stacks[graph_stack_no & 1], commit->id); break; case LINE_PARENT: