Make nvim/lib/k*.h headers be the last one in the list

So that they do the last nvim/func_attr.h include
This commit is contained in:
ZyX 2014-05-18 00:57:46 +04:00 committed by Thiago de Arruda
parent 8c0ca573e5
commit 7dd0d9d2ab
2 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,8 @@
#include "nvim/map.h"
#include "nvim/lib/kvec.h"
#include "nvim/lib/klist.h"
typedef struct {
uint64_t id;
PMap(cstr_t) *subscribed_events;

View File

@ -4,7 +4,6 @@
#include <uv.h>
#include "nvim/lib/klist.h"
#include "nvim/os/event.h"
#include "nvim/os/input.h"
#include "nvim/os/channel.h"
@ -16,6 +15,8 @@
#include "nvim/memory.h"
#include "nvim/misc2.h"
#include "nvim/lib/klist.h"
// event will be cleaned up after it gets processed
#define _destroy_event(x) // do nothing
KLIST_INIT(Event, Event, _destroy_event)