0
0
mirror of https://github.com/vim/vim.git synced 2025-09-03 21:23:48 -04:00

updated for version 7.2-061

This commit is contained in:
Bram Moolenaar 2008-12-03 08:52:26 +00:00
parent 9f94b05b1f
commit 3d0089f5f4
2 changed files with 4 additions and 1 deletions

View File

@ -10339,7 +10339,8 @@ f_function(argvars, rettv)
s = get_tv_string(&argvars[0]);
if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
EMSG2(_(e_invarg2), s);
else if (!function_exists(s))
/* Don't check an autoload name for existence here. */
else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
EMSG2(_("E700: Unknown function: %s"), s);
else
{

View File

@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
61,
/**/
60,
/**/