diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-12-16 17:33:52 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2022-12-16 17:33:52 +0100 |
commit | 614d382621fa0b9d19287b63edb39b637409c581 (patch) | |
tree | 790a90309b938193330618648f2a50d470927cdc /src/nvim/vim.h | |
parent | b55ccb43240c931d1a52a85b02920521a838e0a7 (diff) | |
download | rneovim-614d382621fa0b9d19287b63edb39b637409c581.tar.gz rneovim-614d382621fa0b9d19287b63edb39b637409c581.tar.bz2 rneovim-614d382621fa0b9d19287b63edb39b637409c581.zip |
refactor: rename mch_msg => os_msg
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 3a927d6a55..52af85ccc6 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -253,8 +253,8 @@ enum { FOLD_TEXT_LEN = 51, }; //!< buffer size for get_foldtext() // been seen at that stage. But it must be before globals.h, where error_ga // is declared. #ifndef MSWIN -# define mch_errmsg(str) fprintf(stderr, "%s", (str)) -# define mch_msg(str) printf("%s", (str)) +# define os_errmsg(str) fprintf(stderr, "%s", (str)) +# define os_msg(str) printf("%s", (str)) #endif #include "nvim/buffer_defs.h" // buffer and windows |