summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b668954)
raw | patch | inline | side by side (parent: b668954)
author | Jonas Fonseca <fonseca@diku.dk> | |
Tue, 12 Sep 2006 11:35:05 +0000 (13:35 +0200) | ||
committer | Jonas Fonseca <fonseca@antimatter.localdomain> | |
Tue, 12 Sep 2006 11:35:05 +0000 (13:35 +0200) |
tig.c | patch | blob | history |
index 7121a42e38dd69806ee0d20bcfd40fe30c3dab8e..e707d688821cdd829035c246b84fb05e62f124c5 100644 (file)
--- a/tig.c
+++ b/tig.c
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))
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))
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: