# HG changeset patch # User Bram Moolenaar # Date 1317392612 -7200 # Node ID f04619f1fc1663f4ab05798c410e4fa35a9dd863 # Parent b43767a4c8f044d1fca633441704120f820da2d0 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 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4546,7 +4546,7 @@ ExpandFromContext(xp, pat, num_file, fil } 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 --- a/src/version.c +++ b/src/version.c @@ -710,6 +710,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 324, +/**/ 323, /**/ 322,