X-Git-Url: https://git.tokkee.org/?p=git.git;a=blobdiff_plain;f=diff.h;h=cb687436a0ddb9a08fc1a9e9cec569233284e01f;hp=7af5f1e2a7af3fde64ac945f8b2a9ed88829895a;hb=926b1ec63ee045503f609e88ca445b94c06bd5d7;hpb=6f61eb201799ee83c3a82f1f097c18b3854c0c03 diff --git a/diff.h b/diff.h index 7af5f1e2a..cb687436a 100644 --- a/diff.h +++ b/diff.h @@ -82,6 +82,7 @@ typedef struct strbuf *(*diff_prefix_fn_t)(struct diff_options *opt, void *data) #define DIFF_OPT_OVERRIDE_SUBMODULE_CONFIG (1 << 27) #define DIFF_OPT_DIRSTAT_BY_LINE (1 << 28) #define DIFF_OPT_FUNCCONTEXT (1 << 29) +#define DIFF_OPT_PICKAXE_IGNORE_CASE (1 << 30) #define DIFF_OPT_TST(opts, flag) ((opts)->flags & DIFF_OPT_##flag) #define DIFF_OPT_SET(opts, flag) ((opts)->flags |= DIFF_OPT_##flag) @@ -129,6 +130,7 @@ struct diff_options { int stat_width; int stat_name_width; + int stat_graph_width; int stat_count; const char *word_regex; enum diff_words_type word_diff;