diff src/tag.c @ 10132:9a13895ee8d7 v7.4.2337

commit https://github.com/vim/vim/commit/77b642501ac4c84b4e6820d4e5636eb856faaea7 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Sep 2016 21:15:06 +0200
parents 98ddc760e8d5
children 95e9be4bc490
line wrap: on
line diff
--- 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)
 			{