mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
Merge pull request #4213 from jbradaric/vim-7.4.835
vim-patch:7.4.{835,843,877}
This commit is contained in:
commit
5f54519b4f
@ -1046,41 +1046,44 @@ static ff_visited_list_hdr_T *ff_get_visited_list(char_u *filename, ff_visited_l
|
||||
return retptr;
|
||||
}
|
||||
|
||||
/*
|
||||
* check if two wildcard paths are equal. Returns TRUE or FALSE.
|
||||
* They are equal if:
|
||||
* - both paths are NULL
|
||||
* - they have the same length
|
||||
* - char by char comparison is OK
|
||||
* - the only differences are in the counters behind a '**', so
|
||||
* '**\20' is equal to '**\24'
|
||||
*/
|
||||
static int ff_wc_equal(char_u *s1, char_u *s2)
|
||||
// Check if two wildcard paths are equal.
|
||||
// They are equal if:
|
||||
// - both paths are NULL
|
||||
// - they have the same length
|
||||
// - char by char comparison is OK
|
||||
// - the only differences are in the counters behind a '**', so
|
||||
// '**\20' is equal to '**\24'
|
||||
static bool ff_wc_equal(char_u *s1, char_u *s2)
|
||||
{
|
||||
int i;
|
||||
int i, j;
|
||||
int c1 = NUL;
|
||||
int c2 = NUL;
|
||||
int prev1 = NUL;
|
||||
int prev2 = NUL;
|
||||
|
||||
if (s1 == s2)
|
||||
return TRUE;
|
||||
if (s1 == s2) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (s1 == NULL || s2 == NULL)
|
||||
return FALSE;
|
||||
if (s1 == NULL || s2 == NULL) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (STRLEN(s1) != STRLEN(s2))
|
||||
return FAIL;
|
||||
|
||||
for (i = 0; s1[i] != NUL && s2[i] != NUL; i += MB_PTR2LEN(s1 + i)) {
|
||||
int c1 = PTR2CHAR(s1 + i);
|
||||
int c2 = PTR2CHAR(s2 + i);
|
||||
for (i = 0, j = 0; s1[i] != NUL && s2[j] != NUL;) {
|
||||
c1 = PTR2CHAR(s1 + i);
|
||||
c2 = PTR2CHAR(s2 + j);
|
||||
|
||||
if ((p_fic ? vim_tolower(c1) != vim_tolower(c2) : c1 != c2)
|
||||
&& (prev1 != '*' || prev2 != '*'))
|
||||
return FAIL;
|
||||
&& (prev1 != '*' || prev2 != '*')) {
|
||||
return false;
|
||||
}
|
||||
prev2 = prev1;
|
||||
prev1 = c1;
|
||||
|
||||
i += MB_PTR2LEN(s1 + i);
|
||||
j += MB_PTR2LEN(s2 + j);
|
||||
}
|
||||
return TRUE;
|
||||
return s1[i] == s2[j];
|
||||
}
|
||||
|
||||
/*
|
||||
@ -1111,10 +1114,11 @@ static int ff_check_visited(ff_visited_T **visited_list, char_u *fname, char_u *
|
||||
if ((url && fnamecmp(vp->ffv_fname, ff_expand_buffer) == 0)
|
||||
|| (!url && vp->file_id_valid
|
||||
&& os_fileid_equal(&(vp->file_id), &file_id))) {
|
||||
/* are the wildcard parts equal */
|
||||
if (ff_wc_equal(vp->ffv_wc_path, wc_path) == TRUE)
|
||||
/* already visited */
|
||||
// are the wildcard parts equal
|
||||
if (ff_wc_equal(vp->ffv_wc_path, wc_path)) {
|
||||
// already visited
|
||||
return FAIL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1775,19 +1775,20 @@ bool same_directory(char_u *f1, char_u *f2)
|
||||
*/
|
||||
int pathcmp(const char *p, const char *q, int maxlen)
|
||||
{
|
||||
int i;
|
||||
int i, j;
|
||||
int c1, c2;
|
||||
const char *s = NULL;
|
||||
|
||||
for (i = 0; maxlen < 0 || i < maxlen; i += MB_PTR2LEN((char_u *)p + i)) {
|
||||
for (i = 0, j = 0; maxlen < 0 || (i < maxlen && j < maxlen);) {
|
||||
c1 = PTR2CHAR((char_u *)p + i);
|
||||
c2 = PTR2CHAR((char_u *)q + i);
|
||||
c2 = PTR2CHAR((char_u *)q + j);
|
||||
|
||||
/* End of "p": check if "q" also ends or just has a slash. */
|
||||
if (c1 == NUL) {
|
||||
if (c2 == NUL) /* full match */
|
||||
return 0;
|
||||
s = q;
|
||||
i = j;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -1811,9 +1812,13 @@ int pathcmp(const char *p, const char *q, int maxlen)
|
||||
return p_fic ? vim_toupper(c1) - vim_toupper(c2)
|
||||
: c1 - c2; /* no match */
|
||||
}
|
||||
|
||||
i += MB_PTR2LEN((char_u *)p + i);
|
||||
j += MB_PTR2LEN((char_u *)q + j);
|
||||
}
|
||||
if (s == NULL) /* "i" ran into "maxlen" */
|
||||
if (s == NULL) { // "i" or "j" ran into "maxlen"
|
||||
return 0;
|
||||
}
|
||||
|
||||
c1 = PTR2CHAR((char_u *)s + i);
|
||||
c2 = PTR2CHAR((char_u *)s + i + MB_PTR2LEN((char_u *)s + i));
|
||||
|
@ -411,7 +411,7 @@ static int included_patches[] = {
|
||||
// 880 NA
|
||||
// 879,
|
||||
// 878,
|
||||
// 877,
|
||||
877,
|
||||
// 876 NA
|
||||
// 875 NA
|
||||
// 874 NA
|
||||
@ -445,7 +445,7 @@ static int included_patches[] = {
|
||||
// 846 NA
|
||||
// 845,
|
||||
// 844,
|
||||
// 843,
|
||||
843,
|
||||
// 842 NA
|
||||
// 841 NA
|
||||
// 840 NA
|
||||
@ -453,7 +453,7 @@ static int included_patches[] = {
|
||||
// 838 NA
|
||||
// 837 NA
|
||||
836,
|
||||
// 835,
|
||||
835,
|
||||
834,
|
||||
// 833,
|
||||
// 832,
|
||||
|
Loading…
Reference in New Issue
Block a user