comparison src/globals.h @ 10877:6d8283a8eab8 v8.0.0328

patch 8.0.0328: the "zero count" error doesn't have a number commit https://github.com/vim/vim/commit/23a5558cfd860401aa694f0302d621887440f031 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Feb 2017 19:00:05 +0100
parents 65e0537a4560
children 5780bd3a5a7e
comparison
equal deleted inserted replaced
10876:d8cc7a84d26e 10877:6d8283a8eab8
1579 #ifdef FEAT_WINDOWS 1579 #ifdef FEAT_WINDOWS
1580 EXTERN char_u e_winheight[] INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'")); 1580 EXTERN char_u e_winheight[] INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
1581 EXTERN char_u e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'")); 1581 EXTERN char_u e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
1582 #endif 1582 #endif
1583 EXTERN char_u e_write[] INIT(= N_("E80: Error while writing")); 1583 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"));
1585 #ifdef FEAT_EVAL 1585 #ifdef FEAT_EVAL
1586 EXTERN char_u e_usingsid[] INIT(= N_("E81: Using <SID> not in a script context")); 1586 EXTERN char_u e_usingsid[] INIT(= N_("E81: Using <SID> not in a script context"));
1587 #endif 1587 #endif
1588 #ifdef FEAT_CLIENTSERVER 1588 #ifdef FEAT_CLIENTSERVER
1589 EXTERN char_u e_invexprmsg[] INIT(= N_("E449: Invalid expression received")); 1589 EXTERN char_u e_invexprmsg[] INIT(= N_("E449: Invalid expression received"));