diff options
Diffstat (limited to 'libguile/stacks.h')
-rw-r--r-- | libguile/stacks.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/stacks.h b/libguile/stacks.h index f49e34b82..cdef664de 100644 --- a/libguile/stacks.h +++ b/libguile/stacks.h @@ -73,9 +73,9 @@ typedef struct scm_t_stack { scm_t_info_frame tail[1]; } scm_t_stack; -SCM_API SCM scm_t_stackype; +SCM_API SCM scm_stack_type; -#define SCM_STACKP(obj) (SCM_STRUCTP (obj) && SCM_EQ_P (SCM_STRUCT_VTABLE (obj), scm_t_stackype)) +#define SCM_STACKP(obj) (SCM_STRUCTP (obj) && SCM_EQ_P (SCM_STRUCT_VTABLE (obj), scm_stack_type)) #define SCM_STACK_LENGTH(stack) (SCM_STACK (stack) -> length) #define SCM_FRAMEP(obj) \ |