From: Bram Moolenaar Date: Fri, 30 Sep 2011 14:23:32 +0000 (+0200) Subject: updated for version 7.3.324 X-Git-Tag: v7.3.324 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a627c96182e4f442909c3450d359aa4f59946fde;p=vim updated for version 7.3.324 Problem: Completion for ":compiler" shows color scheme names. Solution: Fix the directory name. (James Vega) --- diff --git a/src/ex_getln.c b/src/ex_getln.c index 8239c0c87..da03a0494 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4546,7 +4546,7 @@ ExpandFromContext(xp, pat, num_file, file, options) } if (xp->xp_context == EXPAND_COMPILER) { - char *directories[] = {"colors", NULL}; + char *directories[] = {"compiler", NULL}; return ExpandRTDir(pat, num_file, file, directories); } if (xp->xp_context == EXPAND_OWNSYNTAX) diff --git a/src/version.c b/src/version.c index db34e7a2d..854cb9c71 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 324, /**/ 323, /**/