1
Fork 0
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:
Marius Vollmer 2001-07-25 22:01:27 +00:00
parent f5fe6c2f7e
commit a130e9829b

View file

@ -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):