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/hardcopy.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/hardcopy.c')
-rw-r--r-- | src/nvim/hardcopy.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/src/nvim/hardcopy.c b/src/nvim/hardcopy.c index 1c334e76de..3c4fba134a 100644 --- a/src/nvim/hardcopy.c +++ b/src/nvim/hardcopy.c @@ -12,29 +12,29 @@ #include <string.h> -#include "vim.h" -#include "version_defs.h" -#include "hardcopy.h" -#include "buffer.h" -#include "charset.h" -#include "eval.h" -#include "ex_cmds2.h" -#include "ex_docmd.h" -#include "fileio.h" -#include "mbyte.h" -#include "memline.h" -#include "memory.h" -#include "message.h" -#include "misc1.h" -#include "misc2.h" -#include "garray.h" -#include "option.h" -#include "path.h" -#include "screen.h" -#include "syntax.h" -#include "term.h" -#include "ui.h" -#include "os/os.h" +#include "nvim/vim.h" +#include "nvim/version_defs.h" +#include "nvim/hardcopy.h" +#include "nvim/buffer.h" +#include "nvim/charset.h" +#include "nvim/eval.h" +#include "nvim/ex_cmds2.h" +#include "nvim/ex_docmd.h" +#include "nvim/fileio.h" +#include "nvim/mbyte.h" +#include "nvim/memline.h" +#include "nvim/memory.h" +#include "nvim/message.h" +#include "nvim/misc1.h" +#include "nvim/misc2.h" +#include "nvim/garray.h" +#include "nvim/option.h" +#include "nvim/path.h" +#include "nvim/screen.h" +#include "nvim/syntax.h" +#include "nvim/term.h" +#include "nvim/ui.h" +#include "nvim/os/os.h" /* * To implement printing on a platform, the following functions must be |