mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 21:10:27 +02:00
* src/vm_system.c (br_if_not_null): Set ac = SCM_BOOL_F if not null.
This commit is contained in:
parent
62edbc2330
commit
38870b4313
1 changed files with 4 additions and 1 deletions
|
@ -390,7 +390,10 @@ SCM_DEFINE_INSTRUCTION (br_if_not_null, "%br-if-not-null", INST_ADDR)
|
|||
{
|
||||
SCM addr = FETCH (); /* must always fetch */
|
||||
if (!SCM_NULLP (ac))
|
||||
{
|
||||
ac = SCM_BOOL_F;
|
||||
pc = SCM_VM_ADDRESS (addr);
|
||||
}
|
||||
NEXT;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue