提交 e2283409 编写于 作者: J Junio C Hamano

combine-diff: minor output changes.

Remove extra whitespace between the change indicators and the
body text.  That is more in line with the uncombined unified
diff output (pointed out by Santi Bejar).

When showing --cc, say so instead of saying just --combined.
Signed-off-by: NJunio C Hamano <junkio@cox.net>
上级 5290a0f8
......@@ -386,7 +386,6 @@ static void dump_sline(struct sline *sline, int cnt, int num_parent)
else
putchar(' ');
}
putchar(' ');
puts(ll->line);
ll = ll->next;
}
......@@ -396,7 +395,7 @@ static void dump_sline(struct sline *sline, int cnt, int num_parent)
else
putchar('+');
}
printf(" %.*s\n", sl->len, sl->bol);
printf("%.*s\n", sl->len, sl->bol);
}
}
}
......@@ -503,7 +502,7 @@ int diff_tree_combined_merge(const unsigned char *sha1,
for (p = paths; p; p = p->next) {
if (!p->len)
continue;
printf("diff --combined ");
printf("diff --%s ", dense ? "cc" : "combined");
if (quote_c_style(p->path, NULL, NULL, 0))
quote_c_style(p->path, NULL, stdout, 0);
else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册