diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-05-24 21:14:59 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-05-24 21:14:59 +0000 |
commit | 78addfa35ea341d2e451e5c85713ccbf9b2de07f (patch) | |
tree | 48a7fe9a096a017fec99a1f75b5bcd95d7038bf3 /libguile/dynwind.c | |
parent | 41cfaa126a0fa89882f82c5d60ea4fd3abc3de9c (diff) | |
download | guile-78addfa35ea341d2e451e5c85713ccbf9b2de07f.tar.gz |
(winder_mark): Use SCM_PACK to correctly convert the WINDER_DATA to a
SCM.
Diffstat (limited to 'libguile/dynwind.c')
-rw-r--r-- | libguile/dynwind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/dynwind.c b/libguile/dynwind.c index a4f7c3de5..5f13c9242 100644 --- a/libguile/dynwind.c +++ b/libguile/dynwind.c @@ -184,7 +184,7 @@ static SCM winder_mark (SCM w) { if (WINDER_MARK_P (w)) - return WINDER_DATA (w); + return SCM_PACK (WINDER_DATA (w)); return SCM_BOOL_F; } |