Remove eval from efunc.

This commit is contained in:
Renaud 2013-05-28 13:35:09 +08:00
parent a61307aa59
commit 77c9fd09ad
4 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,7 @@
#include "bind.h" #include "bind.h"
#include "buffer.h" #include "buffer.h"
#include "crypt.h" #include "crypt.h"
#include "eval.h"
#include "exec.h" #include "exec.h"
#include "file.h" #include "file.h"
#include "isearch.h" #include "isearch.h"

View File

@ -26,9 +26,6 @@
/* input.c */ /* input.c */
#include "input.h" #include "input.h"
/* eval.c */
#include "eval.h"
#if BSD | SVR4 #if BSD | SVR4
/* lock.c */ /* lock.c */
#include "lock.h" #include "lock.h"

1
exec.c
View File

@ -17,6 +17,7 @@
#include "estruct.h" #include "estruct.h"
#include "edef.h" #include "edef.h"
#include "efunc.h" #include "efunc.h"
#include "eval.h"
#include "file.h" #include "file.h"
#include "line.h" #include "line.h"

View File

@ -7,6 +7,7 @@
#include "buffer.h" #include "buffer.h"
#include "bind.h" #include "bind.h"
#include "eval.h"
#include "exec.h" #include "exec.h"
#include "crypt.h" #include "crypt.h"
#include "estruct.h" #include "estruct.h"