From e731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Wed, 14 May 2014 18:05:03 +0200 Subject: Introduce nvim namespace: Fix relative includes. Problem: Some newly introduced files used includes relative to the current file, both of the form `include "../XXX.h"` and `include "XXX.h"`. Preferred form is relative to include root (src/ in our case). Solution: Change includes to preferred form. Note: This is also done to ease next commit (prepend 'nvim/ to all project-local includes). --- src/nvim/api/helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/api/helpers.h') diff --git a/src/nvim/api/helpers.h b/src/nvim/api/helpers.h index afa16e54f4..53538a8e28 100644 --- a/src/nvim/api/helpers.h +++ b/src/nvim/api/helpers.h @@ -4,7 +4,7 @@ #include #include "api/defs.h" -#include "../vim.h" +#include "vim.h" #define set_api_error(message, err) \ do { \ -- cgit