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 e51bb17 commit 40d9da2Copy full SHA for 40d9da2
2 files changed
src/userfunc.c
@@ -3560,8 +3560,11 @@ ex_call(exarg_T *eap)
3560
// Check for trailing illegal characters and a following command.
3561
if (!ends_excmd(*arg))
3562
{
3563
- emsg_severe = TRUE;
3564
- emsg(_(e_trailing));
+ if (!failed)
+ {
3565
+ emsg_severe = TRUE;
3566
+ emsg(_(e_trailing));
3567
+ }
3568
}
3569
else
3570
eap->nextcmd = check_nextcmd(arg);
src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
742
743
static int included_patches[] =
744
{ /* Add new patch number below this line */
745
+/**/
746
+ 268,
747
/**/
748
267,
749
0 commit comments