[bugfix] dynamic-wind is broken

This commit is contained in:
Yuichi Nishiwaki 2016-02-23 20:27:16 +09:00
parent 8421cfb00a
commit 4c6fe54d34
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ pic_wind(pic_state *pic, struct checkpoint *here, struct checkpoint *there)
pic_call(pic, pic_obj_value(there->in), 0); pic_call(pic, pic_obj_value(there->in), 0);
} }
else { else {
pic_call(pic, pic_obj_value(there->out), 0); pic_call(pic, pic_obj_value(here->out), 0);
pic_wind(pic, here->prev, there); pic_wind(pic, here->prev, there);
} }
} }