From a627c96182e4f442909c3450d359aa4f59946fde Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 30 Sep 2011 16:23:32 +0200 Subject: [PATCH] updated for version 7.3.324 Problem: Completion for ":compiler" shows color scheme names. Solution: Fix the directory name. (James Vega) --- src/ex_getln.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_getln.c b/src/ex_getln.c index 8239c0c877..da03a0494f 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 db34e7a2d6..854cb9c716 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, /**/