diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | match.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2014-08-29 Kaz Kylheku <kaz@kylheku.com> + + * match.c (v_load): Fix regression introduced in 94: broken @(load). + 2014-08-25 Kaz Kylheku <kaz@kylheku.com> * gc.c (top): Renamed to gc_prot_top, turned extern. @@ -3672,7 +3672,7 @@ static val v_load(match_files_ctx *c) val stream, name; parser_t parser; - open_txr_file(path, &stream, &name); + open_txr_file(path, &name, &stream); parse(stream, name, &parser); gc_state(gc); |