From f1a0771bfcb6502f58e7fe2ffa9e146fba4c7298 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 12:37:04 +0800 Subject: [PATCH] Remove random from efunc. --- basic.c | 1 + ebind.h | 1 + efunc.h | 3 --- eval.c | 1 + line.c | 1 + names.c | 1 + word.c | 1 + 7 files changed, 6 insertions(+), 3 deletions(-) diff --git a/basic.c b/basic.c index edfb6eb..69d0c92 100644 --- a/basic.c +++ b/basic.c @@ -19,6 +19,7 @@ #include "edef.h" #include "efunc.h" #include "line.h" +#include "random.h" #include "utf8.h" /* diff --git a/ebind.h b/ebind.h index e650970..f527d8f 100644 --- a/ebind.h +++ b/ebind.h @@ -13,6 +13,7 @@ #include "file.h" #include "isearch.h" #include "line.h" +#include "random.h" #include "search.h" #include "spawn.h" diff --git a/efunc.h b/efunc.h index d32cd27..129857a 100644 --- a/efunc.h +++ b/efunc.h @@ -23,9 +23,6 @@ /* basic.c */ #include "basic.h" -/* random.c */ -#include "random.h" - /* main.c */ #include "main.h" diff --git a/eval.c b/eval.c index d80513a..d90e25a 100644 --- a/eval.c +++ b/eval.c @@ -16,6 +16,7 @@ #include "exec.h" #include "fileio.h" #include "line.h" +#include "random.h" #include "search.h" #include "version.h" diff --git a/line.c b/line.c index 172c9cd..b7a8151 100644 --- a/line.c +++ b/line.c @@ -20,6 +20,7 @@ #include "estruct.h" #include "edef.h" #include "efunc.h" +#include "random.h" #include "utf8.h" #define BLOCK_SIZE 16 /* Line block chunk size. */ diff --git a/names.c b/names.c index e2bcffd..f8a498a 100644 --- a/names.c +++ b/names.c @@ -13,6 +13,7 @@ #include "file.h" #include "isearch.h" #include "line.h" +#include "random.h" #include "search.h" #include "spawn.h" diff --git a/word.c b/word.c index fdd952b..e333ccd 100644 --- a/word.c +++ b/word.c @@ -16,6 +16,7 @@ #include "edef.h" #include "efunc.h" #include "line.h" +#include "random.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