mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
vim-patch:8.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.
23a5558cfd
This commit is contained in:
@@ -1146,8 +1146,9 @@ EXTERN char_u e_winheight[] INIT(= N_(
|
|||||||
EXTERN char_u e_winwidth[] INIT(= N_(
|
EXTERN char_u e_winwidth[] INIT(= N_(
|
||||||
"E592: 'winwidth' cannot be smaller than 'winminwidth'"));
|
"E592: 'winwidth' cannot be smaller than 'winminwidth'"));
|
||||||
EXTERN char_u e_write[] INIT(= N_("E80: Error while writing"));
|
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"));
|
||||||
EXTERN char_u e_usingsid[] INIT(= N_("E81: Using <SID> not in a script context"));
|
EXTERN char_u e_usingsid[] INIT(= N_(
|
||||||
|
"E81: Using <SID> not in a script context"));
|
||||||
EXTERN char_u e_intern2[] INIT(= N_("E685: Internal error: %s"));
|
EXTERN char_u e_intern2[] INIT(= N_("E685: Internal error: %s"));
|
||||||
EXTERN char_u e_maxmempat[] INIT(= N_(
|
EXTERN char_u e_maxmempat[] INIT(= N_(
|
||||||
"E363: pattern uses more memory than 'maxmempattern'"));
|
"E363: pattern uses more memory than 'maxmempattern'"));
|
||||||
|
@@ -624,7 +624,7 @@ static const int included_patches[] = {
|
|||||||
331,
|
331,
|
||||||
// 330,
|
// 330,
|
||||||
// 329,
|
// 329,
|
||||||
// 328,
|
328,
|
||||||
327,
|
327,
|
||||||
326,
|
326,
|
||||||
325,
|
325,
|
||||||
|
Reference in New Issue
Block a user