mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 20:30:28 +02:00
*** empty log message ***
This commit is contained in:
parent
061f7faeca
commit
2a63758b46
1 changed files with 5 additions and 1 deletions
|
@ -212,7 +212,11 @@ VM_DEFINE_INSTRUCTION (external_ref, "external-ref", 1, 0, 1)
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
SCM e = external;
|
SCM e = external;
|
||||||
for (i = FETCH (); i; i--)
|
for (i = FETCH (); i; i--)
|
||||||
|
{
|
||||||
|
CHECK_EXTERNAL(e);
|
||||||
e = SCM_CDR (e);
|
e = SCM_CDR (e);
|
||||||
|
}
|
||||||
|
CHECK_EXTERNAL(e);
|
||||||
PUSH (SCM_CAR (e));
|
PUSH (SCM_CAR (e));
|
||||||
NEXT;
|
NEXT;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue