forked from aniani/vim
updated for version 7.1-230
This commit is contained in:
@@ -2889,11 +2889,14 @@ do_source(fname, check_other, is_vimrc)
|
|||||||
if (has_autocmd(EVENT_SOURCECMD, fname_exp, NULL)
|
if (has_autocmd(EVENT_SOURCECMD, fname_exp, NULL)
|
||||||
&& apply_autocmds(EVENT_SOURCECMD, fname_exp, fname_exp,
|
&& apply_autocmds(EVENT_SOURCECMD, fname_exp, fname_exp,
|
||||||
FALSE, curbuf))
|
FALSE, curbuf))
|
||||||
|
{
|
||||||
# ifdef FEAT_EVAL
|
# ifdef FEAT_EVAL
|
||||||
return aborting() ? FAIL : OK;
|
retval = aborting() ? FAIL : OK;
|
||||||
# else
|
# else
|
||||||
return OK;
|
retval = OK;
|
||||||
# endif
|
# endif
|
||||||
|
goto theend;
|
||||||
|
}
|
||||||
|
|
||||||
/* Apply SourcePre autocommands, they may get the file. */
|
/* Apply SourcePre autocommands, they may get the file. */
|
||||||
apply_autocmds(EVENT_SOURCEPRE, fname_exp, fname_exp, FALSE, curbuf);
|
apply_autocmds(EVENT_SOURCEPRE, fname_exp, fname_exp, FALSE, curbuf);
|
||||||
|
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
230,
|
||||||
/**/
|
/**/
|
||||||
229,
|
229,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user