summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-11-04 06:44:25 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-11-04 06:44:25 -0800
commit8cdf0417090b2c6e6b29aa67c7b1efca5501bb7c (patch)
tree5d9420167dacb3314a3553b5c117d00b3664c52d /eval.c
parent7ab744e142b33e641a72b163a4f6f9a2eaf18f15 (diff)
downloadtxr-8cdf0417090b2c6e6b29aa67c7b1efca5501bb7c.tar.gz
txr-8cdf0417090b2c6e6b29aa67c7b1efca5501bb7c.tar.bz2
txr-8cdf0417090b2c6e6b29aa67c7b1efca5501bb7c.zip
Pattern vars accessed from Lisp now dynamic.
* eval.c (set_dyn_env): Static function becomes external. * eval.h (set_dyn_env): Declared. * match.c (eval_with_bindings, eval_progn_with_bindings): Evaluate Lisp code in null lexical environment. Instead install the pattern variables as dynamic, so they shadow global variables. A compatibility check for 121 or earlier provides the old behavior. * txr.1: Document scoping rules, and added compatibility notes.
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 21e1dcea..62841f6e 100644
--- a/eval.c
+++ b/eval.c
@@ -926,7 +926,7 @@ static void do_eval_args(val form, val env, val ctx_form,
}
}
-static val set_dyn_env(val de)
+val set_dyn_env(val de)
{
val old = dyn_env;
dyn_env = de;