From: Bram Moolenaar Date: Sun, 12 Feb 2017 17:45:25 +0000 (+0100) Subject: patch 8.0.0328: the "zero count" error doesn't have a number X-Git-Tag: v8.0.0328 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23a5558cfd860401aa694f0302d621887440f031;p=vim 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. --- diff --git a/src/globals.h b/src/globals.h index 0b6abb0e8..f3e5155e9 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1581,7 +1581,7 @@ EXTERN char_u e_winheight[] INIT(= N_("E591: 'winheight' cannot be smaller than 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 not in a script context")); #endif diff --git a/src/version.c b/src/version.c index e95fed6ba..08d377d0c 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 328, /**/ 327, /**/