comparison src/feature.h @ 17452:f12745505a23 v8.1.1724

patch 8.1.1724: too much overhead checking for CTRL-C while processing text commit https://github.com/vim/vim/commit/b4fe0eb4b4fe52a68a1df05162c03fe51c2fce79 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 21 14:50:21 2019 +0200 patch 8.1.1724: too much overhead checking for CTRL-C while processing text Problem: Too much overhead checking for CTRL-C while processing text. Solution: Increase BREAKCHECK_SKIP. Remove the difference for when built with the GUI. (suggested by Andy Massimino, closes #4708)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Jul 2019 15:00:07 +0200
parents dcc4120f8412
children 554240b9574b
comparison
equal deleted inserted replaced
17451:15078662cd76 17452:f12745505a23
479 /* 479 /*
480 * +textprop Text properties and popup windows 480 * +textprop Text properties and popup windows
481 */ 481 */
482 #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL) 482 #if defined(FEAT_EVAL) && defined(FEAT_SYN_HL)
483 # define FEAT_TEXT_PROP 483 # define FEAT_TEXT_PROP
484 #endif
485
486 #if defined(FEAT_SYN_HL) && defined(FEAT_RELTIME)
487 // Can limit syntax highlight time to 'redrawtime'.
488 # define SYN_TIME_LIMIT 1
484 #endif 489 #endif
485 490
486 /* 491 /*
487 * +spell spell checking 492 * +spell spell checking
488 * 493 *