Remove random from efunc.

This commit is contained in:
Renaud 2013-05-28 12:37:04 +08:00
parent 886adf1b69
commit f1a0771bfc
7 changed files with 6 additions and 3 deletions

View File

@ -19,6 +19,7 @@
#include "edef.h"
#include "efunc.h"
#include "line.h"
#include "random.h"
#include "utf8.h"
/*

View File

@ -13,6 +13,7 @@
#include "file.h"
#include "isearch.h"
#include "line.h"
#include "random.h"
#include "search.h"
#include "spawn.h"

View File

@ -23,9 +23,6 @@
/* basic.c */
#include "basic.h"
/* random.c */
#include "random.h"
/* main.c */
#include "main.h"

1
eval.c
View File

@ -16,6 +16,7 @@
#include "exec.h"
#include "fileio.h"
#include "line.h"
#include "random.h"
#include "search.h"
#include "version.h"

1
line.c
View File

@ -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. */

View File

@ -13,6 +13,7 @@
#include "file.h"
#include "isearch.h"
#include "line.h"
#include "random.h"
#include "search.h"
#include "spawn.h"

1
word.c
View File

@ -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