summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stream.c b/stream.c
index 7acabe82..0e19ab73 100644
--- a/stream.c
+++ b/stream.c
@@ -4575,8 +4575,8 @@ static val open_files(val file_list, val substitute_stream, val mode)
if (nilp(file_list) && substitute_stream) {
return substitute_stream;
} else if (mode) {
- return make_catenated_stream(mapcar(curry_12_1(func_n2o(open_file, 1),
- mode), file_list));
+ return make_catenated_stream(mapcar(pa_12_1(func_n2o(open_file, 1),
+ mode), file_list));
} else {
return make_catenated_stream(mapcar(func_n2o(open_file, 1), file_list));
}
@@ -4590,8 +4590,8 @@ static val open_files_star(val file_list, val substitute_stream, val mode)
if (nilp(file_list) && substitute_stream) {
return substitute_stream;
} else if (mode) {
- return make_catenated_stream(lazy_mapcar(curry_12_1(func_n2o(open_file, 1),
- mode), file_list));
+ return make_catenated_stream(lazy_mapcar(pa_12_1(func_n2o(open_file, 1),
+ mode), file_list));
} else {
return make_catenated_stream(lazy_mapcar(func_n2o(open_file, 1), file_list));
}