]> granicus.if.org Git - vim/commitdiff
updated for version 7.0g04 v7.0g04
authorBram Moolenaar <Bram@vim.org>
Fri, 5 May 2006 21:18:03 +0000 (21:18 +0000)
committerBram Moolenaar <Bram@vim.org>
Fri, 5 May 2006 21:18:03 +0000 (21:18 +0000)
src/eval.c

index b01c5e0799c005fa69b83ec4a0f45f438963cb65..20d9c91e1f39033d3018fd01d9a9f1d8be5b95af 100644 (file)
@@ -8791,7 +8791,11 @@ f_exists(argvars, rettv)
        }
     }
     else if (*p == '&' || *p == '+')                   /* option */
+    {
        n = (get_option_tv(&p, NULL, TRUE) == OK);
+       if (*skipwhite(p) != NUL)
+           n = FALSE;                  /* trailing garbage */
+    }
     else if (*p == '*')                        /* internal or user defined function */
     {
        n = function_exists(p + 1);
@@ -8830,6 +8834,8 @@ f_exists(argvars, rettv)
                    clear_tv(&tv);
            }
        }
+       if (*p != NUL)
+           n = FALSE;
 
        vim_free(tofree);
     }
@@ -19109,14 +19115,18 @@ function_exists(name)
     int            n = FALSE;
 
     p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
-    if (p != NULL)
+    nm = skipwhite(nm);
+
+    /* Only accept "funcname", "funcname ", "funcname (..." and
+     * "funcname(...", not "funcname!...". */
+    if (p != NULL && (*nm == NUL || *nm == '('))
     {
        if (builtin_function(p))
            n = (find_internal_func(p) >= 0);
        else
            n = (find_func(p) != NULL);
-       vim_free(p);
     }
+    vim_free(p);
     return n;
 }