diff options
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 9b5e50cefc..d5a96489c1 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -5723,9 +5723,8 @@ next_search_hl ( } shl->rm.regprog = NULL; shl->lnum = 0; - got_int = FALSE; /* avoid the "Type :quit to exit Vim" - message */ - break; + got_int = FALSE; // avoid the "Type :quit to exit Vim" message + break; } } else if (cur != NULL) { nmatched = next_search_hl_pos(shl, lnum, &(cur->pos), matchcol); |