mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
* continuations.h (SCM_SETJMPBUF): Cast second arg into SCM.
This commit is contained in:
parent
b159fc3cc4
commit
50c65018d3
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ typedef struct
|
||||||
} scm_contregs;
|
} scm_contregs;
|
||||||
|
|
||||||
#define SCM_JMPBUF(x) (((scm_contregs *)SCM_CHARS(x))->jmpbuf)
|
#define SCM_JMPBUF(x) (((scm_contregs *)SCM_CHARS(x))->jmpbuf)
|
||||||
#define SCM_SETJMPBUF SCM_SETCDR
|
#define SCM_SETJMPBUF(z, x) SCM_SETCDR (z, (SCM) x)
|
||||||
#define SCM_DYNENV(x) (((scm_contregs *)SCM_CHARS(x))->dynenv)
|
#define SCM_DYNENV(x) (((scm_contregs *)SCM_CHARS(x))->dynenv)
|
||||||
#define SCM_THROW_VALUE(x) (((scm_contregs *)SCM_CHARS(x))->throw_value)
|
#define SCM_THROW_VALUE(x) (((scm_contregs *)SCM_CHARS(x))->throw_value)
|
||||||
#define SCM_BASE(x) (((scm_contregs *)SCM_CHARS(x))->base)
|
#define SCM_BASE(x) (((scm_contregs *)SCM_CHARS(x))->base)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue