mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 23:36:23 -05:00
Remove random from efunc.
This commit is contained in:
parent
886adf1b69
commit
f1a0771bfc
1
basic.c
1
basic.c
@ -19,6 +19,7 @@
|
|||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
|
#include "random.h"
|
||||||
#include "utf8.h"
|
#include "utf8.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
1
ebind.h
1
ebind.h
@ -13,6 +13,7 @@
|
|||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "isearch.h"
|
#include "isearch.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
|
#include "random.h"
|
||||||
#include "search.h"
|
#include "search.h"
|
||||||
#include "spawn.h"
|
#include "spawn.h"
|
||||||
|
|
||||||
|
3
efunc.h
3
efunc.h
@ -23,9 +23,6 @@
|
|||||||
/* basic.c */
|
/* basic.c */
|
||||||
#include "basic.h"
|
#include "basic.h"
|
||||||
|
|
||||||
/* random.c */
|
|
||||||
#include "random.h"
|
|
||||||
|
|
||||||
/* main.c */
|
/* main.c */
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
|
||||||
|
1
eval.c
1
eval.c
@ -16,6 +16,7 @@
|
|||||||
#include "exec.h"
|
#include "exec.h"
|
||||||
#include "fileio.h"
|
#include "fileio.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
|
#include "random.h"
|
||||||
#include "search.h"
|
#include "search.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
|
1
line.c
1
line.c
@ -20,6 +20,7 @@
|
|||||||
#include "estruct.h"
|
#include "estruct.h"
|
||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
|
#include "random.h"
|
||||||
#include "utf8.h"
|
#include "utf8.h"
|
||||||
|
|
||||||
#define BLOCK_SIZE 16 /* Line block chunk size. */
|
#define BLOCK_SIZE 16 /* Line block chunk size. */
|
||||||
|
1
names.c
1
names.c
@ -13,6 +13,7 @@
|
|||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "isearch.h"
|
#include "isearch.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
|
#include "random.h"
|
||||||
#include "search.h"
|
#include "search.h"
|
||||||
#include "spawn.h"
|
#include "spawn.h"
|
||||||
|
|
||||||
|
1
word.c
1
word.c
@ -16,6 +16,7 @@
|
|||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
|
#include "random.h"
|
||||||
|
|
||||||
/* Word wrap on n-spaces. Back-over whatever precedes the point on the current
|
/* 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
|
* line and stop on the first word-break or the beginning of the line. If we
|
||||||
|
Loading…
Reference in New Issue
Block a user