1
0
forked from aniani/vim

patch 7.4.2058

Problem:    eval.c is too big.
Solution:   Move user functions to userfunc.c
This commit is contained in:
Bram Moolenaar
2016-07-17 18:29:19 +02:00
parent da861d631d
commit a9b579f3d7
11 changed files with 3728 additions and 3531 deletions

View File

@@ -1536,6 +1536,8 @@ EXTERN char_u e_readonlysbx[] INIT(= N_("E794: Cannot set variable in the sandbo
EXTERN char_u e_emptykey[] INIT(= N_("E713: Cannot use empty key for Dictionary"));
EXTERN char_u e_dictreq[] INIT(= N_("E715: Dictionary required"));
EXTERN char_u e_listidx[] INIT(= N_("E684: list index out of range: %ld"));
EXTERN char_u e_toomanyarg[] INIT(= N_("E118: Too many arguments for function: %s"));
EXTERN char_u e_dictkey[] INIT(= N_("E716: Key not present in Dictionary: %s"));
#endif
#ifdef FEAT_QUICKFIX
EXTERN char_u e_readerrf[] INIT(= N_("E47: Error while reading errorfile"));