macro expander: restore a minor shortcut lost in a previous commit

The commit c352ef8f lost a shortcut that is used for looking up
certain bindings in an environment during expansion/compilation.
This commit is contained in:
Matthew Flatt 2013-10-10 16:51:38 -06:00
parent 500b1fbeaa
commit 9a74e633ae

View File

@ -4756,7 +4756,7 @@ int scheme_stx_module_eq3(Scheme_Object *a, Scheme_Object *b,
int scheme_stx_module_eq2(Scheme_Object *a, Scheme_Object *b, Scheme_Object *phase, Scheme_Object *asym)
{
return scheme_stx_module_eq3(a, b, phase, phase, NULL);
return scheme_stx_module_eq3(a, b, phase, phase, asym);
}
int scheme_stx_module_eq(Scheme_Object *a, Scheme_Object *b, intptr_t phase)