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/diff.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/diff.c')
-rw-r--r-- | src/nvim/diff.c | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c index e360edc665..a5b4b64751 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -2,31 +2,31 @@ /// /// Code for diff'ing two, three or four buffers. -#include "vim.h" -#include "diff.h" -#include "buffer.h" -#include "charset.h" -#include "eval.h" -#include "ex_cmds.h" -#include "ex_docmd.h" -#include "fileio.h" -#include "fold.h" -#include "mark.h" -#include "mbyte.h" -#include "memline.h" -#include "message.h" -#include "misc1.h" -#include "misc2.h" -#include "memory.h" -#include "move.h" -#include "normal.h" -#include "option.h" -#include "path.h" -#include "screen.h" -#include "undo.h" -#include "window.h" -#include "os/os.h" -#include "os/shell.h" +#include "nvim/vim.h" +#include "nvim/diff.h" +#include "nvim/buffer.h" +#include "nvim/charset.h" +#include "nvim/eval.h" +#include "nvim/ex_cmds.h" +#include "nvim/ex_docmd.h" +#include "nvim/fileio.h" +#include "nvim/fold.h" +#include "nvim/mark.h" +#include "nvim/mbyte.h" +#include "nvim/memline.h" +#include "nvim/message.h" +#include "nvim/misc1.h" +#include "nvim/misc2.h" +#include "nvim/memory.h" +#include "nvim/move.h" +#include "nvim/normal.h" +#include "nvim/option.h" +#include "nvim/path.h" +#include "nvim/screen.h" +#include "nvim/undo.h" +#include "nvim/window.h" +#include "nvim/os/os.h" +#include "nvim/os/shell.h" static int diff_busy = FALSE; // ex_diffgetput() is busy |