diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2007-01-22 15:29:56 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2007-01-22 15:29:56 +0000 |
commit | 3d178652b8e5906df1b5da5f6183c5967e49342b (patch) | |
tree | e55288b0d716a0b89e6bcc9ce65e195e1c4c316f /libguile | |
parent | 243ebb61133e9cdd56fb3b7feb1ed75827c576f7 (diff) | |
download | guile-3d178652b8e5906df1b5da5f6183c5967e49342b.tar.gz |
* eval.c: remove superfluous ifndef DEVAL.
* eval.c: distangle. move duplicate code to eval.i.c and include
twice.
* backtrace.c, debug.c, debug.h, deprecation.c, eq.c, eval.c
eval.h, gsubr.c, init.c, macros.c, print.c, print.h, read.c,
read.h, stacks.c, symbols.c, throw.c: use private-options.h
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/ChangeLog | 2 | ||||
-rw-r--r-- | libguile/eval.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 4a6749ef1..e5e7028c2 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,5 +1,7 @@ 2007-01-22 Han-Wen Nienhuys <hanwen@lilypond.org> + * eval.c: remove superfluous ifndef DEVAL. + * private-options.h: idem. * eval.i.c: copyright nitpicking. diff --git a/libguile/eval.c b/libguile/eval.c index b48eef78f..b51b58f74 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -3162,8 +3162,6 @@ SCM_DEFINE (scm_nconc2last, "apply:nconc2last", 1, 0, 0, /* SECTION: The rest of this file is only read once. */ -#ifndef DEVAL - /* Trampolines * * Trampolines make it possible to move procedure application dispatch @@ -4089,8 +4087,6 @@ scm_init_eval () scm_add_feature ("delay"); } -#endif /* !DEVAL */ - /* Local Variables: c-file-style: "gnu" |