From: Bram Moolenaar Date: Tue, 6 Sep 2016 19:14:27 +0000 (+0200) Subject: patch 7.4.2337 X-Git-Tag: v7.4.2337 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77b642501ac4c84b4e6820d4e5636eb856faaea7;p=vim patch 7.4.2337 Problem: taglist() is still slow. (Luc Hermitte) Solution: Check for CTRL-C less often when finding duplicates. --- diff --git a/src/tag.c b/src/tag.c index b2d1f151a..3f1dfa9f6 100644 --- a/src/tag.c +++ b/src/tag.c @@ -2401,7 +2401,7 @@ parse_line: && vim_memcmp(mfp2->match, mfp->match, (size_t)mfp->len) == 0) break; - line_breakcheck(); + fast_breakcheck(); } if (i < 0) { diff --git a/src/version.c b/src/version.c index 1dbd6aaac..3331ee358 100644 --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2337, /**/ 2336, /**/