]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.516 v7.4.516
authorBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2014 19:09:06 +0000 (20:09 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2014 19:09:06 +0000 (20:09 +0100)
Problem:    Completing a function name containing a # does not work.  Issue
            253.
Solution:   Recognize the # character. (Christian Brabandt)

src/eval.c
src/version.c

index ea24a9c37f6bd9537a77607850e98e8dbf009b71..1b1072cd80ad70298fed2ac6771921ac630e8d9c 100644 (file)
@@ -3368,11 +3368,11 @@ set_context_for_expression(xp, arg, cmdidx)
            got_eq = TRUE;
            xp->xp_context = EXPAND_EXPRESSION;
        }
-       else if (c == '<'
+       else if ((c == '<' || c == '#')
                && xp->xp_context == EXPAND_FUNCTIONS
                && vim_strchr(xp->xp_pattern, '(') == NULL)
        {
-           /* Function name can start with "<SNR>" */
+           /* Function name can start with "<SNR>" and contain '#'. */
            break;
        }
        else if (cmdidx != CMD_let || got_eq)
index 2f524c85d6f9704fed0411a067722e1f932b5ff7..826679ef3839a08891083aead2311d2cf6f660cd 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    516,
 /**/
     515,
 /**/