# HG changeset patch # User Christian Brabandt # Date 1486922405 -3600 # Node ID 6d8283a8eab88733ef9a1223b157ec4d2877968f # Parent d8cc7a84d26eea4a4a273a56f360bd84b6ea5917 patch 8.0.0328: the "zero count" error doesn't have a number commit https://github.com/vim/vim/commit/23a5558cfd860401aa694f0302d621887440f031 Author: Bram Moolenaar 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. diff --git a/src/globals.h b/src/globals.h --- 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 not in a script context")); #endif diff --git a/src/version.c b/src/version.c --- 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,