changeset 10877:6d8283a8eab8 v8.0.0328

patch 8.0.0328: the "zero count" error doesn't have a number commit https://github.com/vim/vim/commit/23a5558cfd860401aa694f0302d621887440f031 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 12 18:45:25 2017 +0100 patch 8.0.0328: the "zero count" error doesn't have a number Problem: The "zero count" error doesn't have a number. (Hirohito Higashi) Solution: Give it a number and be more specific about the error.
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Feb 2017 19:00:05 +0100
parents d8cc7a84d26e
children cd7433f8778b
files src/globals.h src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/globals.h
+++ b/src/globals.h
@@ -1581,7 +1581,7 @@ EXTERN char_u e_winheight[]	INIT(= N_("E
 EXTERN char_u e_winwidth[]	INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
 #endif
 EXTERN char_u e_write[]		INIT(= N_("E80: Error while writing"));
-EXTERN char_u e_zerocount[]	INIT(= N_("Zero count"));
+EXTERN char_u e_zerocount[]	INIT(= N_("E939: Positive count required"));
 #ifdef FEAT_EVAL
 EXTERN char_u e_usingsid[]	INIT(= N_("E81: Using <SID> not in a script context"));
 #endif
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    328,
+/**/
     327,
 /**/
     326,