X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=diff.h;h=cb687436a0ddb9a08fc1a9e9cec569233284e01f;hb=19a6cd372a998df3079d870e02c064c5bb101841;hp=7af5f1e2a7af3fde64ac945f8b2a9ed88829895a;hpb=e147e9693ace9f7c6dafd4095d3cde80d047e787;p=git.git 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;