diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-10-14 03:26:29 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-10-14 03:26:29 +0000 |
commit | 0db18cf45ae15a48c9c55a2b9e3767d91c8faba8 (patch) | |
tree | 4a73630da606ff1f3107e9bb1435e87db5f60015 /libguile/continuations.h | |
parent | 6cb66921f65e0470d5a08ef1a0c2c4062791d366 (diff) | |
download | guile-0db18cf45ae15a48c9c55a2b9e3767d91c8faba8.tar.gz |
* continuations.c, continuations.h, debug.c, gc.c, init.c, root.c,
stacks.c: Renamed regs --> scm_contregs.
Diffstat (limited to 'libguile/continuations.h')
-rw-r--r-- | libguile/continuations.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libguile/continuations.h b/libguile/continuations.h index e34b17014..0bd18296e 100644 --- a/libguile/continuations.h +++ b/libguile/continuations.h @@ -58,15 +58,15 @@ typedef struct #ifdef DEBUG_EXTENSIONS struct scm_debug_frame *dframe; #endif -} regs; +} scm_contregs; -#define SCM_JMPBUF(x) (((regs *)SCM_CHARS(x))->jmpbuf) +#define SCM_JMPBUF(x) (((scm_contregs *)SCM_CHARS(x))->jmpbuf) #define SCM_SETJMPBUF SCM_SETCDR -#define SCM_DYNENV(x) (((regs *)SCM_CHARS(x))->dynenv) -#define SCM_THROW_VALUE(x) (((regs *)SCM_CHARS(x))->throw_value) -#define SCM_BASE(x) (((regs *)SCM_CHARS(x))->base) -#define SCM_SEQ(x) (((regs *)SCM_CHARS(x))->seq) -#define SCM_DFRAME(x) (((regs *)SCM_CHARS(x))->dframe) +#define SCM_DYNENV(x) (((scm_contregs *)SCM_CHARS(x))->dynenv) +#define SCM_THROW_VALUE(x) (((scm_contregs *)SCM_CHARS(x))->throw_value) +#define SCM_BASE(x) (((scm_contregs *)SCM_CHARS(x))->base) +#define SCM_SEQ(x) (((scm_contregs *)SCM_CHARS(x))->seq) +#define SCM_DFRAME(x) (((scm_contregs *)SCM_CHARS(x))->dframe) |