diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-08-16 17:17:34 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-08-16 17:17:34 -0400 |
commit | 521a9816d0f8447e8509b632e219687300779332 (patch) | |
tree | c7757e6537a9aec24b1299920d22c33f01ac60ee /src/nvim/vim.h | |
parent | db7b970057c92127624ebafa7affaf77fdff6750 (diff) | |
parent | b9276dd6308cd278ffce52fce62df89eadf0aaac (diff) | |
download | rneovim-521a9816d0f8447e8509b632e219687300779332.tar.gz rneovim-521a9816d0f8447e8509b632e219687300779332.tar.bz2 rneovim-521a9816d0f8447e8509b632e219687300779332.zip |
Merge pull request #3179 from ZyX-I/clint-find-new-errors
Add ability to suppress errors to clint.py
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r-- | src/nvim/vim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 17f9cbc310..9fbc6dd300 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -6,7 +6,7 @@ */ #ifndef NVIM_VIM_H -# define NVIM_VIM_H +#define NVIM_VIM_H #define MIN(X, Y) (X < Y ? X : Y) #define MAX(X, Y) (X > Y ? X : Y) |