From 4e24edf71595afd515ad8495d55be67d4eca410b Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 15:10:16 +0800 Subject: [PATCH] Remove basic from efunc. --- ebind.h | 1 + efunc.h | 3 --- eval.c | 3 ++- isearch.c | 1 + line.c | 1 + names.c | 3 ++- random.c | 1 + search.c | 1 + word.c | 1 + 9 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ebind.h b/ebind.h index 240f8b4..e27a586 100644 --- a/ebind.h +++ b/ebind.h @@ -8,6 +8,7 @@ #ifndef EBIND_H_ #define EBIND_H_ +#include "basic.h" #include "bind.h" #include "buffer.h" #include "crypt.h" diff --git a/efunc.h b/efunc.h index 2955a72..45c905a 100644 --- a/efunc.h +++ b/efunc.h @@ -14,9 +14,6 @@ /* External function declarations. */ -/* basic.c */ -#include "basic.h" - /* posix.c */ #include "termio.h" diff --git a/eval.c b/eval.c index dec4e31..06ccb5e 100644 --- a/eval.c +++ b/eval.c @@ -10,8 +10,9 @@ #include -#include "buffer.h" +#include "basic.h" #include "bind.h" +#include "buffer.h" #include "display.h" #include "estruct.h" #include "edef.h" diff --git a/isearch.c b/isearch.c index 9ae9ed9..413ba9f 100644 --- a/isearch.c +++ b/isearch.c @@ -26,6 +26,7 @@ #include +#include "basic.h" #include "display.h" #include "estruct.h" #include "edef.h" diff --git a/line.c b/line.c index 0edd906..0ba021f 100644 --- a/line.c +++ b/line.c @@ -17,6 +17,7 @@ #include +#include "basic.h" #include "display.h" #include "estruct.h" #include "edef.h" diff --git a/names.c b/names.c index 6fe8692..33933c9 100644 --- a/names.c +++ b/names.c @@ -5,8 +5,9 @@ * function. */ -#include "buffer.h" +#include "basic.h" #include "bind.h" +#include "buffer.h" #include "display.h" #include "eval.h" #include "exec.h" diff --git a/random.c b/random.c index 2751f81..0684837 100644 --- a/random.c +++ b/random.c @@ -11,6 +11,7 @@ #include +#include "basic.h" #include "display.h" #include "estruct.h" #include "edef.h" diff --git a/search.c b/search.c index 4bd316e..0f6d336 100644 --- a/search.c +++ b/search.c @@ -62,6 +62,7 @@ #include +#include "basic.h" #include "display.h" #include "estruct.h" #include "edef.h" diff --git a/word.c b/word.c index b3cc28b..8267e91 100644 --- a/word.c +++ b/word.c @@ -12,6 +12,7 @@ #include +#include "basic.h" #include "display.h" #include "estruct.h" #include "edef.h"