summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-02-12 18:45:25 +0100
committerBram Moolenaar <Bram@vim.org>2017-02-12 18:45:25 +0100
commit23a5558cfd860401aa694f0302d621887440f031 (patch)
treea2bd32a6c6fef6d6788cf2f6b4c4cfd550b96608 /src/globals.h
parent75c19464ed7fb6024af64747379e61abc4e4a483 (diff)
patch 8.0.0328: the "zero count" error doesn't have a numberv8.0.0328
Problem: The "zero count" error doesn't have a number. (Hirohito Higashi) Solution: Give it a number and be more specific about the error.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index 0b6abb0e85..f3e5155e99 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 <SID> not in a script context"));
#endif