]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.415 v7.3.415
authorBram Moolenaar <Bram@vim.org>
Thu, 26 Jan 2012 13:32:30 +0000 (14:32 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 26 Jan 2012 13:32:30 +0000 (14:32 +0100)
Problem:    Completion of functions stops once a dictionary is encountered.
            (James McCoy)
Solution:   Return an empty string instead of NULL.

src/eval.c
src/version.c

index 4ba4121d7b3a5cf4a55dd09261d6d70fe12669d6..c63a5e0e5e6592159b499c8624f11cb9d40833a9 100644 (file)
@@ -21802,7 +21802,7 @@ get_user_func_name(xp, idx)
        fp = HI2UF(hi);
 
        if (fp->uf_flags & FC_DICT)
-           return NULL; /* don't show dict functions */
+           return ""; /* don't show dict functions */
 
        if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
            return fp->uf_name; /* prevents overflow */
index f7ddf644d3334c916f1c52857b02d63e5a14748e..cdd57ad1b3c32046ac3bcb6a7cb44aacfd74e7ac 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    415,
 /**/
     414,
 /**/