# HG changeset patch # User Bram Moolenaar # Date 1347979627 -7200 # Node ID 2a200527131fac8f50487790ec201badbccdaf0e # Parent b5706feeb9213c2788dd6a015a2f00336160d232 updated for version 7.3.663 Problem: End of color scheme name not clear in E185. (Aaron Lewis) Solution: Put the name in single quotes. diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -6466,7 +6466,7 @@ ex_colorscheme(eap) #endif } else if (load_colors(eap->arg) == FAIL) - EMSG2(_("E185: Cannot find color scheme %s"), eap->arg); + EMSG2(_("E185: Cannot find color scheme '%s'"), eap->arg); } static void diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -720,6 +720,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 663, +/**/ 662, /**/ 661,