From dce5f2239cba39ed8b54a594e8a07b9f81660999 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 12:47:48 +0800 Subject: [PATCH] Remove window from efunc. --- bind.c | 1 + buffer.c | 1 + ebind.h | 1 + efunc.h | 3 --- eval.c | 1 + file.c | 1 + names.c | 1 + spawn.c | 1 + 8 files changed, 7 insertions(+), 3 deletions(-) diff --git a/bind.c b/bind.c index 8313f1d..580362c 100644 --- a/bind.c +++ b/bind.c @@ -19,6 +19,7 @@ #include "file.h" #include "fileio.h" #include "line.h" +#include "window.h" /* possible names and paths of help files under different OSs */ diff --git a/buffer.c b/buffer.c index fdb751f..7fe79e7 100644 --- a/buffer.c +++ b/buffer.c @@ -19,6 +19,7 @@ #include "efunc.h" #include "file.h" #include "line.h" +#include "window.h" /* * Attach a buffer to a window. The diff --git a/ebind.h b/ebind.h index 5c3af81..4ee5fa9 100644 --- a/ebind.h +++ b/ebind.h @@ -16,6 +16,7 @@ #include "random.h" #include "search.h" #include "spawn.h" +#include "window.h" #include "word.h" /* diff --git a/efunc.h b/efunc.h index 9b79dfb..1c20d8a 100644 --- a/efunc.h +++ b/efunc.h @@ -14,9 +14,6 @@ /* External function declarations. */ -/* window.c */ -#include "window.h" - /* basic.c */ #include "basic.h" diff --git a/eval.c b/eval.c index d90e25a..d757a50 100644 --- a/eval.c +++ b/eval.c @@ -19,6 +19,7 @@ #include "random.h" #include "search.h" #include "version.h" +#include "window.h" #define MAXVARS 255 diff --git a/file.c b/file.c index 463b0ca..463ab58 100644 --- a/file.c +++ b/file.c @@ -23,6 +23,7 @@ #include "input.h" #include "line.h" #include "main.h" +#include "window.h" #if defined(PKCODE) /* Max number of lines from one file. */ diff --git a/names.c b/names.c index 3c35bad..11c8155 100644 --- a/names.c +++ b/names.c @@ -16,6 +16,7 @@ #include "random.h" #include "search.h" #include "spawn.h" +#include "window.h" #include "word.h" struct name_bind names[] = { diff --git a/spawn.c b/spawn.c index 13018f5..185e46d 100644 --- a/spawn.c +++ b/spawn.c @@ -15,6 +15,7 @@ #include "edef.h" #include "efunc.h" #include "file.h" +#include "window.h" #if VMS #define EFN 0 /* Event flag. */