Skip to content

Commit

Permalink
updated for version 7.3.663
Browse files Browse the repository at this point in the history
Problem:    End of color scheme name not clear in E185. (Aaron Lewis)
Solution:   Put the name in single quotes.
  • Loading branch information
brammool committed Sep 18, 2012
1 parent 2623b4f commit be1e9e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ex_docmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
663,
/**/
662,
/**/
Expand Down

0 comments on commit be1e9e9

Please sign in to comment.