diff options
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 e01b54e21c..623ea19e36 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -273,8 +273,8 @@ enum { #include "nvim/message.h" -/* Prefer using emsgf(), because perror() may send the output to the wrong - * destination and mess up the screen. */ +// Prefer using emsgf(), because perror() may send the output to the wrong +// destination and mess up the screen. #define PERROR(msg) (void) emsgf("%s: %s", msg, strerror(errno)) #define SHOWCMD_COLS 10 /* columns needed by shown command */ |