mirror of
https://github.com/rfivet/uemacs.git
synced 2025-01-17 21:56:22 -05:00
Remove input from efunc.
This commit is contained in:
parent
77c9fd09ad
commit
539f327271
1
basic.c
1
basic.c
@ -18,6 +18,7 @@
|
|||||||
#include "estruct.h"
|
#include "estruct.h"
|
||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
#include "random.h"
|
#include "random.h"
|
||||||
#include "utf8.h"
|
#include "utf8.h"
|
||||||
|
1
bind.c
1
bind.c
@ -19,6 +19,7 @@
|
|||||||
#include "exec.h"
|
#include "exec.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
#include "fileio.h"
|
#include "fileio.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
1
buffer.c
1
buffer.c
@ -18,6 +18,7 @@
|
|||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
|
||||||
|
3
efunc.h
3
efunc.h
@ -23,9 +23,6 @@
|
|||||||
/* posix.c */
|
/* posix.c */
|
||||||
#include "termio.h"
|
#include "termio.h"
|
||||||
|
|
||||||
/* input.c */
|
|
||||||
#include "input.h"
|
|
||||||
|
|
||||||
#if BSD | SVR4
|
#if BSD | SVR4
|
||||||
/* lock.c */
|
/* lock.c */
|
||||||
#include "lock.h"
|
#include "lock.h"
|
||||||
|
1
eval.c
1
eval.c
@ -17,6 +17,7 @@
|
|||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
#include "exec.h"
|
#include "exec.h"
|
||||||
#include "fileio.h"
|
#include "fileio.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
#include "random.h"
|
#include "random.h"
|
||||||
#include "search.h"
|
#include "search.h"
|
||||||
|
1
exec.c
1
exec.c
@ -19,6 +19,7 @@
|
|||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
#include "eval.h"
|
#include "eval.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
#include "estruct.h"
|
#include "estruct.h"
|
||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
#include "search.h"
|
#include "search.h"
|
||||||
|
|
||||||
|
1
main.c
1
main.c
@ -68,6 +68,7 @@
|
|||||||
#include "edef.h" /* Global definitions. */
|
#include "edef.h" /* Global definitions. */
|
||||||
#include "efunc.h" /* Function declarations and name table. */
|
#include "efunc.h" /* Function declarations and name table. */
|
||||||
#include "ebind.h" /* Default key bindings. */
|
#include "ebind.h" /* Default key bindings. */
|
||||||
|
#include "input.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
||||||
/* For MSDOS, increase the default stack space. */
|
/* For MSDOS, increase the default stack space. */
|
||||||
|
1
random.c
1
random.c
@ -14,6 +14,7 @@
|
|||||||
#include "estruct.h"
|
#include "estruct.h"
|
||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "search.h"
|
#include "search.h"
|
||||||
|
1
search.c
1
search.c
@ -65,6 +65,7 @@
|
|||||||
#include "estruct.h"
|
#include "estruct.h"
|
||||||
#include "edef.h"
|
#include "edef.h"
|
||||||
#include "efunc.h"
|
#include "efunc.h"
|
||||||
|
#include "input.h"
|
||||||
#include "line.h"
|
#include "line.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user