summaryrefslogtreecommitdiffstats
path: root/src/drawscreen.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-19 12:27:45 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-19 12:27:45 +0100
commit6f0cf62df97ee7c9d26b550adaf469be7fe1e09a (patch)
tree63643f97fa774d3cff85c9148bd5d55719cb22d5 /src/drawscreen.c
parentcdc6a43559d5b880f81efceb849f40c20af1ada1 (diff)
patch 8.2.5128: syntax disabled when using synID() in searchpair() skip exprv8.2.5128
Problem: Syntax highlighting disabled when using synID() in searchpair() skip expression and it times out. (Jaehwang Jung) Solution: Add the redrawtime_limit_set flag. (closes #10562)
Diffstat (limited to 'src/drawscreen.c')
-rw-r--r--src/drawscreen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drawscreen.c b/src/drawscreen.c
index 2c184bde0f..4fea562fcf 100644
--- a/src/drawscreen.c
+++ b/src/drawscreen.c
@@ -2179,6 +2179,7 @@ win_update(win_T *wp)
#endif
#ifdef SYN_TIME_LIMIT
// Set the time limit to 'redrawtime'.
+ redrawtime_limit_set = TRUE;
init_regexp_timeout(p_rdt);
#endif
#ifdef FEAT_FOLDING
@@ -2692,6 +2693,7 @@ win_update(win_T *wp)
#ifdef SYN_TIME_LIMIT
disable_regexp_timeout();
+ redrawtime_limit_set = FALSE;
#endif
// Reset the type of redrawing required, the window has been updated.