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().
diff --git a/src/testing.c b/src/testing.c
index df19b9e..7409237 100644
--- a/src/testing.c
+++ b/src/testing.c
@@ -338,7 +338,7 @@
}
static int
-assert_beeps(typval_T *argvars)
+assert_beeps(typval_T *argvars, int no_beep)
{
char_u *cmd = tv_get_string_chk(&argvars[0]);
garray_T ga;
@@ -348,10 +348,13 @@
suppress_errthrow = TRUE;
emsg_silent = FALSE;
do_cmdline_cmd(cmd);
- if (!called_vim_beep)
+ if (no_beep ? called_vim_beep : !called_vim_beep)
{
prepare_assert_error(&ga);
- ga_concat(&ga, (char_u *)"command did not beep: ");
+ if (no_beep)
+ ga_concat(&ga, (char_u *)"command did beep: ");
+ else
+ ga_concat(&ga, (char_u *)"command did not beep: ");
ga_concat(&ga, cmd);
assert_error(&ga);
ga_clear(&ga);
@@ -369,7 +372,16 @@
void
f_assert_beeps(typval_T *argvars, typval_T *rettv)
{
- rettv->vval.v_number = assert_beeps(argvars);
+ rettv->vval.v_number = assert_beeps(argvars, FALSE);
+}
+
+/*
+ * "assert_nobeep(cmd [, error])" function
+ */
+ void
+f_assert_nobeep(typval_T *argvars, typval_T *rettv)
+{
+ rettv->vval.v_number = assert_beeps(argvars, TRUE);
}
/*