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 be82c25 commit 9ef00beCopy full SHA for 9ef00be
2 files changed
src/ex_eval.c
@@ -432,7 +432,7 @@ get_exception_string(
432
433
if (type == ET_ERROR)
434
{
435
- *should_free = FALSE;
+ *should_free = TRUE;
436
mesg = ((struct msglist *)value)->throw_msg;
437
if (cmdname != NULL && *cmdname != NUL)
438
@@ -489,7 +489,7 @@ get_exception_string(
489
else
490
491
*should_free = FALSE;
492
- ret = (char_u *) value;
+ ret = (char_u *)value;
493
}
494
495
return ret;
src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
743
744
static int included_patches[] =
745
{ /* Add new patch number below this line */
746
+/**/
747
+ 1500,
748
/**/
749
1499,
750
0 commit comments