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 099fdde commit a988496Copy full SHA for a988496
src/option.c
@@ -4970,7 +4970,12 @@ do_set(arg, opt_flags)
4970
4971
/* If error detected, print the error message. */
4972
if (errmsg != NULL)
4973
+ {
4974
+#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4975
+ vim_free(saved_origval);
4976
+#endif
4977
goto skip;
4978
+ }
4979
#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
4980
if (saved_origval != NULL)
4981
{
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 972,
746
/**/
747
971,
748
0 commit comments