aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorBrandon Coleman <metrix1978@gmail.com>2014-06-17 10:22:05 -0500
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-09 00:18:18 +0200
commit82b71a30569b1db8e78f38b1bc22fa7b088e16fc (patch)
treedf411ed358399285881dc46965236d81d7b1d2ae /src/nvim/api/vim.c
parent8c9cb5f9ef4539f5105720666f067b485e8c4f2e (diff)
downloadrneovim-82b71a30569b1db8e78f38b1bc22fa7b088e16fc.tar.gz
rneovim-82b71a30569b1db8e78f38b1bc22fa7b088e16fc.tar.bz2
rneovim-82b71a30569b1db8e78f38b1bc22fa7b088e16fc.zip
move ascii.h include out of vim.h
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 0a5dfdf337..044e59befa 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -4,6 +4,7 @@
#include <string.h>
#include "nvim/api/vim.h"
+#include "nvim/ascii.h"
#include "nvim/api/private/helpers.h"
#include "nvim/api/private/defs.h"
#include "nvim/api/buffer.h"
@@ -12,7 +13,6 @@
#include "nvim/buffer.h"
#include "nvim/window.h"
#include "nvim/types.h"
-#include "nvim/ascii.h"
#include "nvim/ex_docmd.h"
#include "nvim/screen.h"
#include "nvim/memory.h"