diff options
author | Timo Hirvonen <tihirvon@gmail.com> | 2006-06-24 20:24:14 +0300 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-26 14:58:40 -0700 |
commit | c9b5ef998a3027d9f11b0820bb13896096833ccb (patch) | |
tree | e37c30116512362697c9e670b654b4c013477c7a /builtin-log.c | |
parent | a610786f4bc282410d348aba97316115a57740a0 (diff) | |
download | git-c9b5ef998a3027d9f11b0820bb13896096833ccb.tar.gz git-c9b5ef998a3027d9f11b0820bb13896096833ccb.tar.xz |
Set default diff output format after parsing command line
Initialize output_format to 0 instead of DIFF_FORMAT_RAW so that we can see
later if any command line options changed it. Default value is set only if
output format was not specified.
Signed-off-by: Timo Hirvonen <tihirvon@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-log.c')
-rw-r--r-- | builtin-log.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/builtin-log.c b/builtin-log.c index e321959c5..c1bf9d4ee 100644 --- a/builtin-log.c +++ b/builtin-log.c @@ -178,7 +178,6 @@ int cmd_format_patch(int argc, const char **argv, char **envp) rev.diff = 1; rev.combine_merges = 0; rev.ignore_merges = 1; - rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH; git_config(git_format_config); rev.extra_headers = extra_headers; @@ -247,6 +246,9 @@ int cmd_format_patch(int argc, const char **argv, char **envp) if (argc > 1) die ("unrecognized argument: %s", argv[1]); + if (!rev.diffopt.output_format) + rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH; + if (output_directory) { if (use_stdout) die("standard output, or directory, which one?"); |