From 539f327271bfd2e8e4ce94a74bb32d0863c58043 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 14:46:44 +0800 Subject: [PATCH] Remove input from efunc. --- basic.c | 1 + bind.c | 1 + buffer.c | 1 + efunc.h | 3 --- eval.c | 1 + exec.c | 1 + isearch.c | 1 + main.c | 1 + random.c | 1 + search.c | 1 + spawn.c | 1 + 11 files changed, 10 insertions(+), 3 deletions(-) diff --git a/basic.c b/basic.c index 2447355..52894c8 100644 --- a/basic.c +++ b/basic.c @@ -18,6 +18,7 @@ #include "estruct.h" #include "edef.h" #include "efunc.h" +#include "input.h" #include "line.h" #include "random.h" #include "utf8.h" diff --git a/bind.c b/bind.c index 0755d6f..eaabf6d 100644 --- a/bind.c +++ b/bind.c @@ -19,6 +19,7 @@ #include "exec.h" #include "file.h" #include "fileio.h" +#include "input.h" #include "line.h" #include "main.h" #include "window.h" diff --git a/buffer.c b/buffer.c index 7fe79e7..395e1cd 100644 --- a/buffer.c +++ b/buffer.c @@ -18,6 +18,7 @@ #include "edef.h" #include "efunc.h" #include "file.h" +#include "input.h" #include "line.h" #include "window.h" diff --git a/efunc.h b/efunc.h index db59459..d015ed1 100644 --- a/efunc.h +++ b/efunc.h @@ -23,9 +23,6 @@ /* posix.c */ #include "termio.h" -/* input.c */ -#include "input.h" - #if BSD | SVR4 /* lock.c */ #include "lock.h" diff --git a/eval.c b/eval.c index 4724f1d..bc1bcc0 100644 --- a/eval.c +++ b/eval.c @@ -17,6 +17,7 @@ #include "efunc.h" #include "exec.h" #include "fileio.h" +#include "input.h" #include "line.h" #include "random.h" #include "search.h" diff --git a/exec.c b/exec.c index 2420f62..0cd7347 100644 --- a/exec.c +++ b/exec.c @@ -19,6 +19,7 @@ #include "efunc.h" #include "eval.h" #include "file.h" +#include "input.h" #include "line.h" /* diff --git a/isearch.c b/isearch.c index 97375f7..f7634e6 100644 --- a/isearch.c +++ b/isearch.c @@ -29,6 +29,7 @@ #include "estruct.h" #include "edef.h" #include "efunc.h" +#include "input.h" #include "line.h" #include "search.h" diff --git a/main.c b/main.c index 776ba7e..5b8ee6a 100644 --- a/main.c +++ b/main.c @@ -68,6 +68,7 @@ #include "edef.h" /* Global definitions. */ #include "efunc.h" /* Function declarations and name table. */ #include "ebind.h" /* Default key bindings. */ +#include "input.h" #include "version.h" /* For MSDOS, increase the default stack space. */ diff --git a/random.c b/random.c index 638bb27..6a186bc 100644 --- a/random.c +++ b/random.c @@ -14,6 +14,7 @@ #include "estruct.h" #include "edef.h" #include "efunc.h" +#include "input.h" #include "line.h" #include "main.h" #include "search.h" diff --git a/search.c b/search.c index 25e3628..464b3e4 100644 --- a/search.c +++ b/search.c @@ -65,6 +65,7 @@ #include "estruct.h" #include "edef.h" #include "efunc.h" +#include "input.h" #include "line.h" #include "main.h" diff --git a/spawn.c b/spawn.c index 20ba51b..499a18d 100644 --- a/spawn.c +++ b/spawn.c @@ -16,6 +16,7 @@ #include "edef.h" #include "efunc.h" #include "file.h" +#include "input.h" #include "main.h" #include "window.h"