diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-11-04 06:44:25 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-11-04 06:44:25 -0800 |
commit | 8cdf0417090b2c6e6b29aa67c7b1efca5501bb7c (patch) | |
tree | 5d9420167dacb3314a3553b5c117d00b3664c52d /eval.c | |
parent | 7ab744e142b33e641a72b163a4f6f9a2eaf18f15 (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |