comparison src/search.c @ 24307:55f458d35292 v8.2.2694

patch 8.2.2694: when 'matchpairs' is empty every character beeps Commit: https://github.com/vim/vim/commit/5b8cabfef7c3707f3e53e13844d90e5a217e1e84 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 2 18:55:57 2021 +0200 patch 8.2.2694: when 'matchpairs' is empty every character beeps Problem: When 'matchpairs' is empty every character beeps. (Marco Hinz) Solution: Bail out when no character in 'matchpairs' was found. (closes #8053) Add assert_nobeep().
author Bram Moolenaar <Bram@vim.org>
date Fri, 02 Apr 2021 19:00:06 +0200
parents b0e7fa957cd1
children 192058cad081
comparison
equal deleted inserted replaced
24306:4a6be7bbbe68 24307:55f458d35292
2815 break; 2815 break;
2816 p += mb_ptr2len(p); 2816 p += mb_ptr2len(p);
2817 if (*p == NUL) 2817 if (*p == NUL)
2818 return; 2818 return;
2819 } 2819 }
2820 if (*p == NUL)
2821 return;
2820 2822
2821 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep 2823 if ((lpos = findmatch(NULL, NUL)) == NULL) // no match, so beep
2822 vim_beep(BO_MATCH); 2824 vim_beep(BO_MATCH);
2823 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline) 2825 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
2824 { 2826 {