mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-10 14:00:21 +02:00
(scm_ceval, scm_deval): Use "RETURN" macro when returning value of a
variable, not the plain "return" statement.
This commit is contained in:
parent
f5fe6c2f7e
commit
a130e9829b
1 changed files with 1 additions and 1 deletions
|
@ -2560,7 +2560,7 @@ dispatch:
|
|||
RETURN (x);
|
||||
|
||||
case scm_tc7_variable:
|
||||
return SCM_VARIABLE_REF(x);
|
||||
RETURN (SCM_VARIABLE_REF(x));
|
||||
|
||||
#ifdef MEMOIZE_LOCALS
|
||||
case SCM_BIT8(SCM_ILOC00):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue