summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2020-08-17 22:56:26 -0700
committerKaz Kylheku <kaz@kylheku.com>2020-08-17 22:56:26 -0700
commit7f17d9b257eee0b2848a4fbb83b12ea142c454b0 (patch)
treecc900f07d22c5f5751c2a912f7821312de79a300 /eval.c
parent8f03981dfcd66aed76a98716e1a41a8bf1f0dbe6 (diff)
downloadtxr-7f17d9b257eee0b2848a4fbb83b12ea142c454b0.tar.gz
txr-7f17d9b257eee0b2848a4fbb83b12ea142c454b0.tar.bz2
txr-7f17d9b257eee0b2848a4fbb83b12ea142c454b0.zip
txr: repeat ferrets out Lisp-embedded vars.
Gone is the need for :vars to inform @(repeat)/@(rep) about variable references buried in Lisp. * eval.c (expand_with_free_refs): Change to external linkage. * eval.h (expand_with_free_refs): Declared. * parser.y (extract_vars): Handle sys:expr forms, which are embedded Lisp via expand_with_free_refs to uncover their free variables. * txr.1: Redocumented this area.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index d5c438eb..1091432d 100644
--- a/eval.c
+++ b/eval.c
@@ -5040,7 +5040,7 @@ static val gather_free_refs_nw(val info_cons, val exc,
return uw_rthrow(continue_s, nil);
}
-static val expand_with_free_refs(val form, val menv_in, val upto_menv_in)
+val expand_with_free_refs(val form, val menv_in, val upto_menv_in)
{
val ret;
val menv = default_null_arg(menv_in);