aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2015-08-16 16:14:15 +0300
committerZyX <kp-pav@yandex.ru>2015-08-16 16:14:15 +0300
commitb9276dd6308cd278ffce52fce62df89eadf0aaac (patch)
treeac0e7730f9c5bd94365a9e5fd5a61e4659b48db4
parentaa6723d16bb004675de0800e3dbcc58344d02a4a (diff)
downloadrneovim-b9276dd6308cd278ffce52fce62df89eadf0aaac.tar.gz
rneovim-b9276dd6308cd278ffce52fce62df89eadf0aaac.tar.bz2
rneovim-b9276dd6308cd278ffce52fce62df89eadf0aaac.zip
vim.h: Fix error which is not suppressed by clint
-rw-r--r--src/nvim/vim.h2
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)