mirror of
https://github.com/janet-lang/janet
synced 2024-12-27 00:40:26 +00:00
Fix redefinable macros
This commit is contained in:
parent
3b412d51f0
commit
413c46e2ee
@ -657,7 +657,7 @@ static int macroexpand1(
|
|||||||
}
|
}
|
||||||
Janet macroval;
|
Janet macroval;
|
||||||
JanetBindingType btype = janet_resolve(c->env, name, ¯oval);
|
JanetBindingType btype = janet_resolve(c->env, name, ¯oval);
|
||||||
if (btype != JANET_BINDING_MACRO ||
|
if (!(btype == JANET_BINDING_MACRO || btype == JANET_BINDING_DYNAMIC_MACRO) ||
|
||||||
!janet_checktype(macroval, JANET_FUNCTION))
|
!janet_checktype(macroval, JANET_FUNCTION))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user