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

(winder_mark): Use SCM_PACK to correctly convert the WINDER_DATA to a

SCM.
This commit is contained in:
Marius Vollmer 2004-05-24 21:14:59 +00:00
parent 41cfaa126a
commit 78addfa35e

View file

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