Skip to content

Commit 23a5558

Browse files
committed
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.
1 parent 75c1946 commit 23a5558

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/globals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1581,7 +1581,7 @@ EXTERN char_u e_winheight[] INIT(= N_("E591: 'winheight' cannot be smaller than
15811581
EXTERN char_u e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
15821582
#endif
15831583
EXTERN char_u e_write[] INIT(= N_("E80: Error while writing"));
1584-
EXTERN char_u e_zerocount[] INIT(= N_("Zero count"));
1584+
EXTERN char_u e_zerocount[] INIT(= N_("E939: Positive count required"));
15851585
#ifdef FEAT_EVAL
15861586
EXTERN char_u e_usingsid[] INIT(= N_("E81: Using <SID> not in a script context"));
15871587
#endif

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
328,
767769
/**/
768770
327,
769771
/**/

0 commit comments

Comments
 (0)