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

(scm_t_stackype): Renamed to scm_stack_type everywhere.

This commit is contained in:
Marius Vollmer 2001-12-16 21:57:52 +00:00
parent 4d4528e79a
commit 762e289af5
2 changed files with 7 additions and 7 deletions

View file

@ -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) \