# HG changeset patch # User Christian Brabandt # Date 1473189306 -7200 # Node ID 9a13895ee8d760f935c6bee3cb80091f771f38fd # Parent b314d98c3088585afc7855b23b66da58e237db25 commit https://github.com/vim/vim/commit/77b642501ac4c84b4e6820d4e5636eb856faaea7 Author: Bram Moolenaar Date: Tue Sep 6 21:14:27 2016 +0200 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2337, +/**/ 2336, /**/ 2335,