1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

(scm_make_memoized): Restore use of SCM_UNPACK.

This commit is contained in:
Neil Jerram 2005-03-24 07:30:19 +00:00
parent c29748cdfe
commit d193b04b7b
2 changed files with 5 additions and 1 deletions

View file

@ -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