1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

fix SCM_CELL macro usage.

* libguile/vm.h (SCM_VM_CONT_DATA): Fix SCM_CELL macro usage.
This commit is contained in:
Andy Wingo 2009-12-08 21:59:42 +01:00
parent 0b1733c7d1
commit 75a029aa25

View file

@ -99,7 +99,7 @@ struct scm_vm_cont {
SCM_API scm_t_bits scm_tc16_vm_cont;
#define SCM_VM_CONT_P(OBJ) SCM_SMOB_PREDICATE (scm_tc16_vm_cont, OBJ)
#define SCM_VM_CONT_DATA(CONT) ((struct scm_vm_cont *) SCM_CELL_WORD_1 (CONT))
#define SCM_VM_CONT_DATA(CONT) ((struct scm_vm_cont *) SCM_SMOB_DATA_1 (CONT))
SCM_API SCM scm_vm_capture_continuations (void);
SCM_API void scm_vm_reinstate_continuations (SCM conts);