Problem: Some error messages are internal but do not use iemsg().
Solution: Use iemsg(). (Dominique Pellé, closes #6894)
else if (*s == NUL) // we hit NUL.
{
if (copy)
- emsg(_(e_re_damg));
+ iemsg(_(e_re_damg));
goto exit;
}
else
int flags;
if (expr == NULL)
- EMSG_RET_NULL(_(e_null));
+ IEMSG_RET_NULL(_(e_null));
init_class_tab();
break;
default: // Oh dear. Called inappropriately.
- emsg(_(e_re_corr));
+ iemsg(_(e_re_corr));
#ifdef DEBUG
printf("Called regrepeat with op code %d\n", OP(p));
#endif
break;
default:
- emsg(_(e_re_corr));
+ iemsg(_(e_re_corr));
#ifdef DEBUG
printf("Illegal op code %d\n", op);
#endif
{
// We get here only if there's trouble -- normally "case END" is
// the terminating point.
- emsg(_(e_re_corr));
+ iemsg(_(e_re_corr));
#ifdef DEBUG
printf("Premature EOL\n");
#endif
// Be paranoid...
if (prog == NULL || line == NULL)
{
- emsg(_(e_null));
+ iemsg(_(e_null));
goto theend;
}
// Be paranoid...
if (prog == NULL || line == NULL)
{
- emsg(_(e_null));
+ iemsg(_(e_null));
goto theend;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1633,
/**/
1632,
/**/