diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-17 18:29:19 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-17 18:29:19 +0200 |
commit | a9b579f3d7463720a316e11e77a7a9fbb9267986 (patch) | |
tree | 44c8c9db5628fdb95f6fa89ce7b3e89cddedb839 /src/globals.h | |
parent | da861d631d7e22654faee2789286c685ad548911 (diff) | |
download | vim-git-a9b579f3d7463720a316e11e77a7a9fbb9267986.tar.gz |
patch 7.4.2058v7.4.2058
Problem: eval.c is too big.
Solution: Move user functions to userfunc.c
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index 770756cd9..07e3cf7b2 100644 --- a/src/globals.h +++ b/src/globals.h @@ -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")); |