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/spell.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/spell.c')
-rw-r--r-- | src/nvim/spell.c | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c index 5392fe4a70..1071bfb362 100644 --- a/src/nvim/spell.c +++ b/src/nvim/spell.c @@ -287,37 +287,37 @@ #include <string.h> #include <stdlib.h> -#include "vim.h" -#include "spell.h" -#include "buffer.h" -#include "charset.h" -#include "edit.h" -#include "eval.h" -#include "ex_cmds.h" -#include "ex_cmds2.h" -#include "ex_docmd.h" -#include "fileio.h" -#include "getchar.h" -#include "hashtab.h" -#include "mbyte.h" -#include "memline.h" -#include "memory.h" -#include "message.h" -#include "misc1.h" -#include "misc2.h" -#include "garray.h" -#include "normal.h" -#include "option.h" -#include "os_unix.h" -#include "path.h" -#include "regexp.h" -#include "screen.h" -#include "search.h" -#include "syntax.h" -#include "term.h" -#include "ui.h" -#include "undo.h" -#include "os/os.h" +#include "nvim/vim.h" +#include "nvim/spell.h" +#include "nvim/buffer.h" +#include "nvim/charset.h" +#include "nvim/edit.h" +#include "nvim/eval.h" +#include "nvim/ex_cmds.h" +#include "nvim/ex_cmds2.h" +#include "nvim/ex_docmd.h" +#include "nvim/fileio.h" +#include "nvim/getchar.h" +#include "nvim/hashtab.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/normal.h" +#include "nvim/option.h" +#include "nvim/os_unix.h" +#include "nvim/path.h" +#include "nvim/regexp.h" +#include "nvim/screen.h" +#include "nvim/search.h" +#include "nvim/syntax.h" +#include "nvim/term.h" +#include "nvim/ui.h" +#include "nvim/undo.h" +#include "nvim/os/os.h" #ifndef UNIX // it's in os_unix_defs.h for Unix # include <time.h> // for time_t |