aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
diff options
context:
space:
mode:
authorEliseo Martínez <eliseomarmol@gmail.com>2014-05-12 11:59:22 +0200
committerEliseo Martínez <eliseomarmol@gmail.com>2014-05-15 20:46:01 +0200
commit409cc138f2de121288de3ffb930354b94af5edcd (patch)
tree31b10a63931ce99eb97dda40b286defc3b140606 /src/nvim/version.c
parente731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 (diff)
downloadrneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.gz
rneovim-409cc138f2de121288de3ffb930354b94af5edcd.tar.bz2
rneovim-409cc138f2de121288de3ffb930354b94af5edcd.zip
Introduce nvim namespace: Fix project-local includes.
Prepend 'nvim/' in all project-local (non-system) includes.
Diffstat (limited to 'src/nvim/version.c')
-rw-r--r--src/nvim/version.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index d4df349741..9515c4daee 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -10,15 +10,15 @@
/// All the remarks about older versions have been removed, they are not very
/// interesting.
-#include "vim.h"
-#include "version.h"
-#include "charset.h"
-#include "memline.h"
-#include "message.h"
-#include "misc2.h"
-#include "screen.h"
-
-#include "version_defs.h"
+#include "nvim/vim.h"
+#include "nvim/version.h"
+#include "nvim/charset.h"
+#include "nvim/memline.h"
+#include "nvim/message.h"
+#include "nvim/misc2.h"
+#include "nvim/screen.h"
+
+#include "nvim/version_defs.h"
char *Version = VIM_VERSION_SHORT;
static char *mediumVersion = VIM_VERSION_MEDIUM;