mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-16 16:50:21 +02:00
* Fix two typos that crept in with the scm_X_t to scm_t_X rename.
* Partial fix for date-week-number bug.
This commit is contained in:
parent
89255ff476
commit
0f6e56f7e2
8 changed files with 26 additions and 11 deletions
|
@ -77,9 +77,9 @@ typedef struct scm_t_stack {
|
|||
# define scm_stack scm_t_stack
|
||||
#endif
|
||||
|
||||
extern SCM scm_t_stackype;
|
||||
extern 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