mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 14:21:10 +02:00
* print.c (scm_iprin1): SCM_PACK/UNPACK corrections.
This commit is contained in:
parent
890b019c74
commit
998308d305
1 changed files with 2 additions and 2 deletions
|
@ -338,7 +338,7 @@ taloop:
|
|||
case 1:
|
||||
/* gloc */
|
||||
scm_puts ("#@", port);
|
||||
exp = SCM_CAR (exp - 1);
|
||||
exp = SCM_GLOC_SYM (exp);
|
||||
goto taloop;
|
||||
default:
|
||||
idef:
|
||||
|
@ -349,7 +349,7 @@ taloop:
|
|||
{
|
||||
case scm_tcs_cons_gloc:
|
||||
|
||||
if (SCM_CDR (SCM_CAR (exp) - 1L) == 0)
|
||||
if (SCM_CDR ((SCM) SCM_STRUCT_VTABLE_DATA (exp)) == (SCM) 0)
|
||||
{
|
||||
ENTER_NESTED_DATA (pstate, exp, circref);
|
||||
if (SCM_OBJ_CLASS_FLAGS (exp) & SCM_CLASSF_GOOPS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue