From: Bram Moolenaar Date: Tue, 15 Jan 2008 21:17:30 +0000 (+0000) Subject: updated for version 7.1-230 X-Git-Tag: v7.1.230 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f33943efe7d82e61b970a45e2ca6716eebdbb659;p=vim updated for version 7.1-230 --- diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 2eeb7527d..051c716e4 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -2889,11 +2889,14 @@ do_source(fname, check_other, is_vimrc) if (has_autocmd(EVENT_SOURCECMD, fname_exp, NULL) && apply_autocmds(EVENT_SOURCECMD, fname_exp, fname_exp, FALSE, curbuf)) + { # ifdef FEAT_EVAL - return aborting() ? FAIL : OK; + retval = aborting() ? FAIL : OK; # else - return OK; + retval = OK; # endif + goto theend; + } /* Apply SourcePre autocommands, they may get the file. */ apply_autocmds(EVENT_SOURCEPRE, fname_exp, fname_exp, FALSE, curbuf); diff --git a/src/version.c b/src/version.c index aea902577..27daf07fb 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 230, /**/ 229, /**/