Skip to content

Commit 77b6425

Browse files
committed
patch 7.4.2337
Problem: taglist() is still slow. (Luc Hermitte) Solution: Check for CTRL-C less often when finding duplicates.
1 parent df0db16 commit 77b6425

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/tag.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2401,7 +2401,7 @@ find_tags(
24012401
&& vim_memcmp(mfp2->match, mfp->match,
24022402
(size_t)mfp->len) == 0)
24032403
break;
2404-
line_breakcheck();
2404+
fast_breakcheck();
24052405
}
24062406
if (i < 0)
24072407
{

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,8 @@ static char *(features[]) =
763763

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2337,
766768
/**/
767769
2336,
768770
/**/

0 commit comments

Comments
 (0)