From 7816f9650801ea5a599b1e8ec9e386e5256fc126 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 13:18:47 +0800 Subject: [PATCH] Remove region from efunc. --- ebind.h | 1 + efunc.h | 3 --- names.c | 1 + word.c | 1 + 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ebind.h b/ebind.h index 5014e42..3b17491 100644 --- a/ebind.h +++ b/ebind.h @@ -15,6 +15,7 @@ #include "isearch.h" #include "line.h" #include "random.h" +#include "region.h" #include "search.h" #include "spawn.h" #include "window.h" diff --git a/efunc.h b/efunc.h index d9fe775..a95753a 100644 --- a/efunc.h +++ b/efunc.h @@ -20,9 +20,6 @@ /* display.c */ #include "display.h" -/* region.c */ -#include "region.h" - /* posix.c */ #include "termio.h" diff --git a/names.c b/names.c index 71db22c..769d02f 100644 --- a/names.c +++ b/names.c @@ -15,6 +15,7 @@ #include "isearch.h" #include "line.h" #include "main.h" +#include "region.h" #include "random.h" #include "search.h" #include "spawn.h" diff --git a/word.c b/word.c index d957563..51742f7 100644 --- a/word.c +++ b/word.c @@ -18,6 +18,7 @@ #include "line.h" #include "main.h" #include "random.h" +#include "region.h" /* Word wrap on n-spaces. Back-over whatever precedes the point on the current * line and stop on the first word-break or the beginning of the line. If we