diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-01-23 21:51:38 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-23 21:51:38 -0800 |
commit | 5dc1308562ab5991ecada68b06707709bea408c9 (patch) | |
tree | 321b8d7310c01d8b01584377d9aba448952a7384 /xdiff/xdiff.h | |
parent | f3d6073e02f8ee8dc6376b0262151dbbfbbdfe7d (diff) | |
parent | cc545709253fe8440db2648cb5c771e5b126bdb5 (diff) | |
download | git-5dc1308562ab5991ecada68b06707709bea408c9.tar.gz git-5dc1308562ab5991ecada68b06707709bea408c9.tar.xz |
Merge branch 'js/patience-diff'
* js/patience-diff:
bash completions: Add the --patience option
Introduce the diff option '--patience'
Implement the patience diff algorithm
Conflicts:
contrib/completion/git-completion.bash
Diffstat (limited to 'xdiff/xdiff.h')
-rw-r--r-- | xdiff/xdiff.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xdiff/xdiff.h b/xdiff/xdiff.h index 361f80231..4da052a3f 100644 --- a/xdiff/xdiff.h +++ b/xdiff/xdiff.h @@ -32,6 +32,7 @@ extern "C" { #define XDF_IGNORE_WHITESPACE (1 << 2) #define XDF_IGNORE_WHITESPACE_CHANGE (1 << 3) #define XDF_IGNORE_WHITESPACE_AT_EOL (1 << 4) +#define XDF_PATIENCE_DIFF (1 << 5) #define XDF_WHITESPACE_FLAGS (XDF_IGNORE_WHITESPACE | XDF_IGNORE_WHITESPACE_CHANGE | XDF_IGNORE_WHITESPACE_AT_EOL) #define XDL_PATCH_NORMAL '-' |