Introduce nvim namespace: Fix project-local includes.

Prepend 'nvim/' in all project-local (non-system) includes.
This commit is contained in:
Eliseo Martínez
2014-05-12 11:59:22 +02:00
parent e731a5edf8
commit 409cc138f2
134 changed files with 1664 additions and 1664 deletions

View File

@@ -10,16 +10,16 @@
* ex_eval.c: functions for Ex command line for the +eval feature.
*/
#include "vim.h"
#include "ex_eval.h"
#include "charset.h"
#include "eval.h"
#include "ex_cmds2.h"
#include "ex_docmd.h"
#include "message.h"
#include "misc2.h"
#include "memory.h"
#include "regexp.h"
#include "nvim/vim.h"
#include "nvim/ex_eval.h"
#include "nvim/charset.h"
#include "nvim/eval.h"
#include "nvim/ex_cmds2.h"
#include "nvim/ex_docmd.h"
#include "nvim/message.h"
#include "nvim/misc2.h"
#include "nvim/memory.h"
#include "nvim/regexp.h"
static void free_msglist(struct msglist *l);