diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-12 11:59:22 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-15 20:46:01 +0200 |
commit | 409cc138f2de121288de3ffb930354b94af5edcd (patch) | |
tree | 31b10a63931ce99eb97dda40b286defc3b140606 /src/nvim/memline.c | |
parent | e731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 (diff) | |
download | rneovim-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/memline.c')
-rw-r--r-- | src/nvim/memline.c | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/src/nvim/memline.c b/src/nvim/memline.c index a01506756f..f21f007bbb 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -43,32 +43,32 @@ #include <string.h> -#include "vim.h" -#include "memline.h" -#include "blowfish.h" -#include "buffer.h" -#include "eval.h" -#include "fileio.h" -#include "main.h" -#include "mark.h" -#include "mbyte.h" -#include "memfile.h" -#include "memory.h" -#include "message.h" -#include "misc1.h" -#include "misc2.h" -#include "crypt.h" -#include "option.h" -#include "os_unix.h" -#include "path.h" -#include "screen.h" -#include "sha256.h" -#include "spell.h" -#include "term.h" -#include "ui.h" -#include "undo.h" -#include "window.h" -#include "os/os.h" +#include "nvim/vim.h" +#include "nvim/memline.h" +#include "nvim/blowfish.h" +#include "nvim/buffer.h" +#include "nvim/eval.h" +#include "nvim/fileio.h" +#include "nvim/main.h" +#include "nvim/mark.h" +#include "nvim/mbyte.h" +#include "nvim/memfile.h" +#include "nvim/memory.h" +#include "nvim/message.h" +#include "nvim/misc1.h" +#include "nvim/misc2.h" +#include "nvim/crypt.h" +#include "nvim/option.h" +#include "nvim/os_unix.h" +#include "nvim/path.h" +#include "nvim/screen.h" +#include "nvim/sha256.h" +#include "nvim/spell.h" +#include "nvim/term.h" +#include "nvim/ui.h" +#include "nvim/undo.h" +#include "nvim/window.h" +#include "nvim/os/os.h" #ifndef UNIX /* it's in os_unix_defs.h for Unix */ # include <time.h> |