summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-09-18 16:47:07 +0200
committerBram Moolenaar <Bram@vim.org>2012-09-18 16:47:07 +0200
commitbe1e9e9fc1f31e3d0b82eb3febd51923bda2a1e4 (patch)
treeb66d9e2264e511f5101b125fe8c7d0a43637ca7d
parent2623b4f412a77f6426ab997246d755fdcbddea7b (diff)
updated for version 7.3.663v7.3.663
Problem: End of color scheme name not clear in E185. (Aaron Lewis) Solution: Put the name in single quotes.
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 2257c551ca..ebc8b98d11 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 a6e3ec38ce..43d11611bd 100644
--- 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,