summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-03-06 07:35:15 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-03-06 07:35:15 -0800
commit24b4b36628fd2ab3d3ff946907ad3a88e325a772 (patch)
tree0c05defafd9814dd57fb515f910859a84740aac5 /eval.c
parentbd49a5f0328a2a4091af212961d4d6581d159f67 (diff)
downloadtxr-24b4b36628fd2ab3d3ff946907ad3a88e325a772.tar.gz
txr-24b4b36628fd2ab3d3ff946907ad3a88e325a772.tar.bz2
txr-24b4b36628fd2ab3d3ff946907ad3a88e325a772.zip
* eval.c (apply_intrinsic, lazy_mapcar): Changed linkage to external.
* eval.h (apply_intrinsic, lazy_mapcar): Declarations added. * stream.c (open_files, open_file_star): New functions. (stream_init): Registered new functions as intrinsics. * txr.1: Documented open-files and open-files*. Added to make-catenated-stream documentation. * genvim.txr: Replace bunch of code with open-files. * txr.vim: Regenerated.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eval.c b/eval.c
index 00b448ce..6e3ff5ac 100644
--- a/eval.c
+++ b/eval.c
@@ -651,7 +651,7 @@ static val apply_frob_args(val args)
}
}
-static val apply_intrinsic(val fun, val args)
+val apply_intrinsic(val fun, val args)
{
return apply(fun, apply_frob_args(args), cons(apply_s, nil));
}
@@ -2661,7 +2661,7 @@ static val lazy_mapcar_func(val env, val lcons)
return nil;
}
-static val lazy_mapcar(val fun, val list)
+val lazy_mapcar(val fun, val list)
{
if (!list)
return nil;