mirror of
https://github.com/git/git.git
synced 2024-11-18 22:23:55 +01:00
Merge branch 'pw/word-diff-zero-width-matches'
The word-diff mode has been taught to work better with a word regexp that can match an empty string. * pw/word-diff-zero-width-matches: word diff: handle zero length matches
This commit is contained in:
commit
65c18913de
10
diff.c
10
diff.c
@ -2053,7 +2053,7 @@ static void fn_out_diff_words_aux(void *priv,
|
||||
static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
|
||||
int *begin, int *end)
|
||||
{
|
||||
if (word_regex && *begin < buffer->size) {
|
||||
while (word_regex && *begin < buffer->size) {
|
||||
regmatch_t match[1];
|
||||
if (!regexec_buf(word_regex, buffer->ptr + *begin,
|
||||
buffer->size - *begin, 1, match, 0)) {
|
||||
@ -2061,9 +2061,13 @@ static int find_word_boundaries(mmfile_t *buffer, regex_t *word_regex,
|
||||
'\n', match[0].rm_eo - match[0].rm_so);
|
||||
*end = p ? p - buffer->ptr : match[0].rm_eo + *begin;
|
||||
*begin += match[0].rm_so;
|
||||
return *begin >= *end;
|
||||
if (*begin == *end)
|
||||
(*begin)++;
|
||||
else
|
||||
return *begin > *end;
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* find the next word */
|
||||
|
@ -184,6 +184,11 @@ test_expect_success 'word diff with a regular expression' '
|
||||
word_diff --color-words="[a-z]+"
|
||||
'
|
||||
|
||||
test_expect_success 'word diff with zero length matches' '
|
||||
cp expect.letter-runs-are-words expect &&
|
||||
word_diff --color-words="[a-z${LF}]*"
|
||||
'
|
||||
|
||||
test_expect_success 'set up a diff driver' '
|
||||
git config diff.testdriver.wordRegex "[^[:space:]]" &&
|
||||
cat <<-\EOF >.gitattributes
|
||||
|
Loading…
Reference in New Issue
Block a user