summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libguile/ChangeLog4
-rw-r--r--libguile/debug.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libguile/ChangeLog b/libguile/ChangeLog
index ece5a5bb2..2900c450c 100644
--- a/libguile/ChangeLog
+++ b/libguile/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-24 Neil Jerram <neil@ossau.uklinux.net>
+
+ * debug.c (scm_make_memoized): Restore use of SCM_UNPACK.
+
2005-03-23 Neil Jerram <neil@ossau.uklinux.net>
* debug.c (scm_make_memoized): Remove unnecessary critical
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