summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b90ced0)
raw | patch | inline | side by side (parent: b90ced0)
author | Junio C Hamano <gitster@pobox.com> | |
Sun, 16 Dec 2007 23:03:58 +0000 (15:03 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 16 Dec 2007 23:03:58 +0000 (15:03 -0800) |
Because print_summary() forgot to call diff_setup_done() after futzing with
diff output options, it failed to activate recursive diff, which resulted in
an incorrect summary.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff output options, it failed to activate recursive diff, which resulted in
an incorrect summary.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-commit.c | patch | blob | history |
diff --git a/builtin-commit.c b/builtin-commit.c
index 518ebe0347e631c72f4e2a83b948259ee20fd213..61770ef456ca7f5f8342796e66f7ebfd3e1e7f73 100644 (file)
--- a/builtin-commit.c
+++ b/builtin-commit.c
rev.show_root_diff = 1;
rev.commit_format = get_commit_format("format:%h: %s");
rev.always_show_header = 0;
+ diff_setup_done(&rev.diffopt);
printf("Created %scommit ", initial_commit ? "initial " : "");