Skip to content

Commit

Permalink
diff.c: convert --raw
Browse files Browse the repository at this point in the history
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
pclouds authored and gitster committed Jan 28, 2019
1 parent 7fd9a1b commit ed88148
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions diff.c
Original file line number Diff line number Diff line change
Expand Up @@ -4898,6 +4898,9 @@ static void prep_parse_options(struct diff_options *options)
PARSE_OPT_NONEG, diff_opt_unified),
OPT_BOOL('W', "function-context", &options->flags.funccontext,
N_("generate diffs with <n> lines context")),
OPT_BIT_F(0, "raw", &options->output_format,
N_("generate the diff in raw format"),
DIFF_FORMAT_RAW, PARSE_OPT_NONEG),
OPT_END()
};

Expand Down Expand Up @@ -4926,9 +4929,7 @@ int diff_opt_parse(struct diff_options *options,
return ac;

/* Output format options */
if (!strcmp(arg, "--raw"))
options->output_format |= DIFF_FORMAT_RAW;
else if (!strcmp(arg, "--patch-with-raw")) {
if (!strcmp(arg, "--patch-with-raw")) {
enable_patch_output(&options->output_format);
options->output_format |= DIFF_FORMAT_RAW;
} else if (!strcmp(arg, "--numstat"))
Expand Down

0 comments on commit ed88148

Please sign in to comment.