diff options
author | erw7 <erw7.github@gmail.com> | 2019-06-04 09:06:35 +0900 |
---|---|---|
committer | erw7 <erw7.github@gmail.com> | 2019-06-09 13:28:10 +0900 |
commit | 2d6e44087734a39b5e0f2789bcd68e1a4526955f (patch) | |
tree | d7fa9210ea10f93aa9c6d0124bb825de15f57911 /src/nvim/vim.h | |
parent | f66ffc64f611cae52df50df0e495b6ef08594e50 (diff) | |
download | rneovim-2d6e44087734a39b5e0f2789bcd68e1a4526955f.tar.gz rneovim-2d6e44087734a39b5e0f2789bcd68e1a4526955f.tar.bz2 rneovim-2d6e44087734a39b5e0f2789bcd68e1a4526955f.zip |
Remove display_erros()
do_shell() in Nvim uses the Nvim UI, not the tty directly, so
display_errors() is not necessary anymore.
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 5261d266b2..60737014b3 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -291,7 +291,6 @@ enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext() # define mch_errmsg(str) fprintf(stderr, "%s", (str)) # define mch_msg(str) printf("%s", (str)) #endif -#define display_errors() fflush(stderr) #include "nvim/globals.h" // global variables and messages #include "nvim/buffer_defs.h" // buffer and windows |