diff options
Diffstat (limited to 'libguile/eval.c')
-rw-r--r-- | libguile/eval.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libguile/eval.c b/libguile/eval.c index 0d45ef984..c0b6cb402 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -26,22 +26,20 @@ #include <alloca.h> #include <stdarg.h> -#include "gsubr.h" -#include "pairs.h" -#include "boolean.h" #include "alist.h" #include "async.h" +#include "boolean.h" #include "continuations.h" #include "control.h" #include "debug.h" #include "deprecation.h" #include "dynwind.h" #include "eq.h" -#include "eval.h" #include "expand.h" #include "feature.h" #include "fluids.h" #include "goops.h" +#include "gsubr.h" #include "hash.h" #include "hashtab.h" #include "keywords.h" @@ -50,6 +48,7 @@ #include "memoize.h" #include "modules.h" #include "numbers.h" +#include "pairs.h" #include "ports.h" #include "print.h" #include "private-options.h" @@ -67,9 +66,11 @@ #include "vectors.h" #include "vm.h" - +#include "eval.h" + + /* We have three levels of EVAL here: - eval (exp, env) |