From be1e9e9fc1f31e3d0b82eb3febd51923bda2a1e4 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 18 Sep 2012 16:47:07 +0200 Subject: [PATCH] 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. --- src/ex_docmd.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 2257c551c..ebc8b98d1 100644 --- 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 index a6e3ec38c..43d11611b 100644 --- a/src/version.c +++ b/src/version.c @@ -719,6 +719,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 663, /**/ 662, /**/ -- 2.50.1