From 9c2c4b763587c5cbef42be2d03c1ad55c75cc1b6 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 14:57:03 +0800 Subject: [PATCH] Remove display from efunc. --- basic.c | 1 + bind.c | 1 + buffer.c | 1 + efunc.h | 3 --- eval.c | 1 + exec.c | 1 + input.c | 1 + isearch.c | 1 + line.c | 1 + main.c | 1 + names.c | 1 + random.c | 1 + region.c | 1 + search.c | 1 + spawn.c | 1 + tcap.c | 1 + word.c | 1 + 17 files changed, 16 insertions(+), 3 deletions(-) diff --git a/basic.c b/basic.c index 52894c8..469a817 100644 --- a/basic.c +++ b/basic.c @@ -15,6 +15,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/bind.c b/bind.c index eaabf6d..8c97fed 100644 --- a/bind.c +++ b/bind.c @@ -13,6 +13,7 @@ #include #include "buffer.h" +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/buffer.c b/buffer.c index 395e1cd..81e95a2 100644 --- a/buffer.c +++ b/buffer.c @@ -14,6 +14,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/efunc.h b/efunc.h index d015ed1..2955a72 100644 --- a/efunc.h +++ b/efunc.h @@ -17,9 +17,6 @@ /* basic.c */ #include "basic.h" -/* display.c */ -#include "display.h" - /* posix.c */ #include "termio.h" diff --git a/eval.c b/eval.c index bc1bcc0..dec4e31 100644 --- a/eval.c +++ b/eval.c @@ -12,6 +12,7 @@ #include "buffer.h" #include "bind.h" +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/exec.c b/exec.c index 0cd7347..3acc4f7 100644 --- a/exec.c +++ b/exec.c @@ -14,6 +14,7 @@ #include "buffer.h" #include "bind.h" +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/input.c b/input.c index f35ac3b..277e749 100644 --- a/input.c +++ b/input.c @@ -14,6 +14,7 @@ #include #include "bind.h" +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/isearch.c b/isearch.c index f7634e6..9ae9ed9 100644 --- a/isearch.c +++ b/isearch.c @@ -26,6 +26,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/line.c b/line.c index 926e56d..0edd906 100644 --- a/line.c +++ b/line.c @@ -17,6 +17,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/main.c b/main.c index 5b8ee6a..0cddbb1 100644 --- a/main.c +++ b/main.c @@ -64,6 +64,7 @@ #define maindef #include "crypt.h" +#include "display.h" #include "estruct.h" /* Global structures and defines. */ #include "edef.h" /* Global definitions. */ #include "efunc.h" /* Function declarations and name table. */ diff --git a/names.c b/names.c index 721dd8d..6fe8692 100644 --- a/names.c +++ b/names.c @@ -7,6 +7,7 @@ #include "buffer.h" #include "bind.h" +#include "display.h" #include "eval.h" #include "exec.h" #include "crypt.h" diff --git a/random.c b/random.c index 6a186bc..2751f81 100644 --- a/random.c +++ b/random.c @@ -11,6 +11,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/region.c b/region.c index cea8d5c..008fdee 100644 --- a/region.c +++ b/region.c @@ -12,6 +12,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/search.c b/search.c index 464b3e4..4bd316e 100644 --- a/search.c +++ b/search.c @@ -62,6 +62,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/spawn.c b/spawn.c index 499a18d..6a69288 100644 --- a/spawn.c +++ b/spawn.c @@ -12,6 +12,7 @@ #include #include "buffer.h" +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/tcap.c b/tcap.c index 1c6b4d4..5f55e95 100644 --- a/tcap.c +++ b/tcap.c @@ -23,6 +23,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/word.c b/word.c index 51742f7..b3cc28b 100644 --- a/word.c +++ b/word.c @@ -12,6 +12,7 @@ #include +#include "display.h" #include "estruct.h" #include "edef.h" #include "efunc.h"