mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 15:40:19 +02:00
Remove remaining uses of discouraged constructs, really.
* libguile/throw.c, libguile/vm-engine.h, libguile/vm-i-system.c, libguile/vm.c: Replace uses of discouraged constructs by their current counterparts.
This commit is contained in:
parent
5c8cefe591
commit
8b22ed7abd
4 changed files with 8 additions and 8 deletions
|
@ -769,7 +769,7 @@ VM_DEFINE_INSTRUCTION (53, call, "call", 1, -1, 1)
|
|||
/*
|
||||
* Other interpreted or compiled call
|
||||
*/
|
||||
if (!SCM_FALSEP (scm_procedure_p (x)))
|
||||
if (!scm_is_false (scm_procedure_p (x)))
|
||||
{
|
||||
SCM args;
|
||||
/* At this point, the stack contains the frame, the procedure and each one
|
||||
|
@ -848,7 +848,7 @@ VM_DEFINE_INSTRUCTION (54, goto_args, "goto/args", 1, -1, 1)
|
|||
/*
|
||||
* Other interpreted or compiled call
|
||||
*/
|
||||
if (!SCM_FALSEP (scm_procedure_p (x)))
|
||||
if (!scm_is_false (scm_procedure_p (x)))
|
||||
{
|
||||
SCM args;
|
||||
POP_LIST (nargs);
|
||||
|
@ -933,7 +933,7 @@ VM_DEFINE_INSTRUCTION (57, mv_call, "mv-call", 4, -1, 1)
|
|||
/*
|
||||
* Other interpreted or compiled call
|
||||
*/
|
||||
if (!SCM_FALSEP (scm_procedure_p (x)))
|
||||
if (!scm_is_false (scm_procedure_p (x)))
|
||||
{
|
||||
SCM args;
|
||||
/* At this point, the stack contains the procedure and each one of its
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue