We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8c219 commit 768ce24Copy full SHA for 768ce24
2 files changed
src/ex_eval.c
@@ -1562,7 +1562,11 @@ ex_catch(exarg_T *eap)
1562
}
1563
save_cpo = p_cpo;
1564
p_cpo = (char_u *)"";
1565
+ /* Disable error messages, it will make current_exception
1566
+ * invalid. */
1567
+ ++emsg_off;
1568
regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
1569
+ --emsg_off;
1570
regmatch.rm_ic = FALSE;
1571
if (end != NULL)
1572
*end = save_char;
src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
747
748
static int included_patches[] =
749
{ /* Add new patch number below this line */
750
+/**/
751
+ 1282,
752
/**/
753
1281,
754
0 commit comments