mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 15:38:33 +00:00
vim-patch:7.4.2337
Problem: taglist() is still slow. (Luc Hermitte)
Solution: Check for CTRL-C less often when finding duplicates.
77b642501a
This commit is contained in:
@@ -1862,7 +1862,7 @@ parse_line:
|
|||||||
&& memcmp(mfp2->match, mfp->match,
|
&& memcmp(mfp2->match, mfp->match,
|
||||||
(size_t)mfp->len) == 0)
|
(size_t)mfp->len) == 0)
|
||||||
break;
|
break;
|
||||||
line_breakcheck();
|
fast_breakcheck();
|
||||||
}
|
}
|
||||||
if (i < 0) {
|
if (i < 0) {
|
||||||
((struct match_found **)(ga_match[mtt].ga_data))
|
((struct match_found **)(ga_match[mtt].ga_data))
|
||||||
|
@@ -103,7 +103,7 @@ static int included_patches[] = {
|
|||||||
// 2340 NA
|
// 2340 NA
|
||||||
// 2339,
|
// 2339,
|
||||||
// 2338 NA
|
// 2338 NA
|
||||||
// 2337,
|
2337,
|
||||||
// 2336,
|
// 2336,
|
||||||
// 2335,
|
// 2335,
|
||||||
// 2334,
|
// 2334,
|
||||||
|
Reference in New Issue
Block a user