summaryrefslogtreecommitdiff
path: root/libguile/debug.c
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2005-03-24 07:30:19 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2005-03-24 07:30:19 +0000
commitd193b04b7b90178b928878fae390c43d20c2b1c4 (patch)
tree93617beec4cd3eb5b47d9862761c5a2eae6b3a68 /libguile/debug.c
parentc29748cdfe63534b0f763a26fb563f063ae1b78f (diff)
downloadguile-d193b04b7b90178b928878fae390c43d20c2b1c4.tar.gz
(scm_make_memoized): Restore use of SCM_UNPACK.
Diffstat (limited to 'libguile/debug.c')
-rw-r--r--libguile/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/debug.c b/libguile/debug.c
index d377429a1..39aa5ddd3 100644
--- a/libguile/debug.c
+++ b/libguile/debug.c
@@ -147,7 +147,7 @@ SCM
scm_make_memoized (SCM exp, SCM env)
{
/* *fixme* Check that env is a valid environment. */
- SCM_RETURN_NEWSMOB (scm_tc16_memoized, scm_cons (exp, env));
+ SCM_RETURN_NEWSMOB (scm_tc16_memoized, SCM_UNPACK (scm_cons (exp, env)));
}
#ifdef GUILE_DEBUG