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:
parent
4d4528e79a
commit
762e289af5
2 changed files with 7 additions and 7 deletions
|
@ -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) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue