]> granicus.if.org Git - vim/commitdiff
Fix: When 'searchhl' causes a hang make CTRL-C disable 'shearchhl'.
authorBram Moolenaar <Bram@vim.org>
Tue, 20 Jul 2010 11:11:28 +0000 (13:11 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 20 Jul 2010 11:11:28 +0000 (13:11 +0200)
runtime/doc/todo.txt
src/screen.c

index 3aa38987e42ab8355d72a9d90e6f25229cfb6625..40d4b672a7bf38148656c60edf7e54dd57c3923c 100644 (file)
@@ -30,16 +30,12 @@ be worked on, but only if you sponsor Vim development.  See |sponsor|.
                                                        *known-bugs*
 -------------------- Known bugs and current work -----------------------
 
-Update syntax menus: run checkmenu.
-
-GTK: torn-off menu doesn't work.
-
-:find completion has duplicates. (Bjorn Winckler, 2010 Jul 18)
+GTK: torn-off menu doesn't work.  Because of patch for file selector?
 
 Win64: diff.exe crashes on Win64. (Julianne Bailey, 2006 Dec 12)
 Build another diff.exe somehow?
 
-Hang in search HL, CTRL-C should clear it. (Dimitar Dimitrov, 2010 Jul 19)
+:find completion has duplicates. (Bjorn Winckler, 2010 Jul 18)
 
 Conceal: don't show for 'hlmatch' when 'modifiable' is off?
 And don't care about 'cursorline'.
index ac531d4858ca342b6807db967e7724fdb18da722..db26046ae5761e2626dff8dc4a34c5f6d1a5c064 100644 (file)
@@ -7119,7 +7119,7 @@ next_search_hl(win, shl, lnum, mincol)
                NULL
 #endif
                );
-       if (called_emsg)
+       if (called_emsg || got_int)
        {
            /* Error while handling regexp: stop using this regexp. */
            if (shl == &search_hl)