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 a1024b1 commit 26a7f66Copy full SHA for 26a7f66
src/misc2.c
@@ -1012,8 +1012,12 @@ do_outofmem_msg(size)
1012
{
1013
/* Don't hide this message */
1014
emsg_silent = 0;
1015
- EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
+
1016
+ /* Must come first to avoid coming back here when printing the error
1017
+ * message fails, e.g. when setting v:errmsg. */
1018
did_outofmem_msg = TRUE;
1019
1020
+ EMSGN(_("E342: Out of memory! (allocating %lu bytes)"), size);
1021
}
1022
1023
src/version.c
@@ -714,6 +714,8 @@ static char *(features[]) =
714
715
static int included_patches[] =
716
{ /* Add new patch number below this line */
717
+/**/
718
+ 348,
719
/**/
720
347,
721
0 commit comments