diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-01 14:38:17 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-01 14:38:17 -0500 |
commit | f1344bc2198c4e433dedbc8b0662ba90cb5eaf1c (patch) | |
tree | f5d48caeb217459f82332555e852216569d30ecb /src/nvim/globals.h | |
parent | df4ac79761162313de4e27a265044125062013cf (diff) | |
parent | 3fd62f961294d11fff5754a3c597e982b54ca74a (diff) | |
download | rneovim-f1344bc2198c4e433dedbc8b0662ba90cb5eaf1c.tar.gz rneovim-f1344bc2198c4e433dedbc8b0662ba90cb5eaf1c.tar.bz2 rneovim-f1344bc2198c4e433dedbc8b0662ba90cb5eaf1c.zip |
Merge pull request #3903 from justinmk/vim-7.4.605
vim-patch:7.4.605
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 52eebebf41..d68e952693 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -2,6 +2,7 @@ #define NVIM_GLOBALS_H #include <stdbool.h> +#include <inttypes.h> // EXTERN is only defined in main.c. That's where global variables are // actually defined and initialized. @@ -1239,6 +1240,7 @@ EXTERN char_u e_intern2[] INIT(= N_("E685: Internal error: %s")); EXTERN char_u e_maxmempat[] INIT(= N_( "E363: pattern uses more memory than 'maxmempattern'")); EXTERN char_u e_emptybuf[] INIT(= N_("E749: empty buffer")); +EXTERN char_u e_nobufnr[] INIT(= N_("E86: Buffer %" PRId64 " does not exist")); EXTERN char_u e_invalpat[] INIT(= N_( "E682: Invalid search pattern or delimiter")); |