Skip to content

Commit

Permalink
Set default diff output format after parsing command line
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
tihirvon authored and Junio C Hamano committed Jun 26, 2006
1 parent a610786 commit c9b5ef9
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 3 deletions.
3 changes: 3 additions & 0 deletions builtin-diff-files.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ int cmd_diff_files(int argc, const char **argv, char **envp)
usage(diff_files_usage);
argv++; argc--;
}
if (!rev.diffopt.output_format)
rev.diffopt.output_format = DIFF_FORMAT_RAW;

/*
* Make sure there are NO revision (i.e. pending object) parameter,
* rev.max_count is reasonable (0 <= n <= 3),
Expand Down
3 changes: 3 additions & 0 deletions builtin-diff-index.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ int cmd_diff_index(int argc, const char **argv, char **envp)
else
usage(diff_cache_usage);
}
if (!rev.diffopt.output_format)
rev.diffopt.output_format = DIFF_FORMAT_RAW;

/*
* Make sure there is one revision (i.e. pending object),
* and there is no revision filtering parameters.
Expand Down
3 changes: 3 additions & 0 deletions builtin-diff-stages.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ int cmd_diff_stages(int ac, const char **av, char **envp)
ac--; av++;
}

if (!diff_options.output_format)
diff_options.output_format = DIFF_FORMAT_RAW;

if (ac < 3 ||
sscanf(av[1], "%d", &stage1) != 1 ||
! (0 <= stage1 && stage1 <= 3) ||
Expand Down
3 changes: 3 additions & 0 deletions builtin-diff-tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ int cmd_diff_tree(int argc, const char **argv, char **envp)
usage(diff_tree_usage);
}

if (!opt->diffopt.output_format)
opt->diffopt.output_format = DIFF_FORMAT_RAW;

/*
* NOTE! We expect "a ^b" to be equal to "a..b", so we
* reverse the order of the objects if the second one
Expand Down
4 changes: 3 additions & 1 deletion builtin-diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,11 @@ int cmd_diff(int argc, const char **argv, char **envp)

git_config(git_diff_config);
init_revisions(&rev);
rev.diffopt.output_format = DIFF_FORMAT_PATCH;

argc = setup_revisions(argc, argv, &rev, NULL);
if (!rev.diffopt.output_format)
rev.diffopt.output_format = DIFF_FORMAT_PATCH;

/* Do we have --cached and not have a pending object, then
* default to HEAD by hand. Eek.
*/
Expand Down
4 changes: 3 additions & 1 deletion builtin-log.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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?");
Expand Down
1 change: 0 additions & 1 deletion diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,6 @@ static void run_checkdiff(struct diff_filepair *p, struct diff_options *o)
void diff_setup(struct diff_options *options)
{
memset(options, 0, sizeof(*options));
options->output_format = DIFF_FORMAT_RAW;
options->line_termination = '\n';
options->break_opt = -1;
options->rename_limit = -1;
Expand Down

0 comments on commit c9b5ef9

Please sign in to comment.