diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-03-07 12:12:59 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-07 12:12:59 -0800 |
commit | 1e4d0875acbce3c881bc1de66c8900cdc240ebe8 (patch) | |
tree | 1f8ebc2181351b54d600b16a1ec1434e51049352 /diff.h | |
parent | 713194ce54ea67d3fc666ef81aaece16d0e44928 (diff) | |
parent | f1589d100796c58615033dde10c1c6446b814357 (diff) | |
download | git-1e4d0875acbce3c881bc1de66c8900cdc240ebe8.tar.gz |
Merge branch 'jc/pickaxe-ignore-case'
By Junio C Hamano (2) and Ramsay Jones (1)
* jc/pickaxe-ignore-case:
ctype.c: Fix a sparse warning
pickaxe: allow -i to search in patch case-insensitively
grep: use static trans-case table
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) |