summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-01-29 06:58:15 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-01-29 06:58:15 -0800
commitff17df5e47559aa87ffd828c6126a63165805ad2 (patch)
tree3a0aa3cf65ed8ff39356fd1a8a5eaf78d7dbfefb /ChangeLog
parentb8966f0bf73f01e1e380a08e6949ccc9ddd45637 (diff)
downloadtxr-ff17df5e47559aa87ffd828c6126a63165805ad2.tar.gz
txr-ff17df5e47559aa87ffd828c6126a63165805ad2.tar.bz2
txr-ff17df5e47559aa87ffd828c6126a63165805ad2.zip
Default argument initializer scoping rule change, allowing
things like (defun foo (s : (l (length s))) ...). Default arguments can be initialized by expressions that refer to the arguments. * eval.c (bind_args): By means of a local array, defer the evaluation of optional argument init forms until the lexical environment, including all the parameters, is captured. Then valuates the forms in the array, and set the variable values. * txr.1: Clarify the new scoping rules.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f1435385..903c1045 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2014-01-29 Kaz Kylheku <kaz@kylheku.com>
+
+ Default argument initializer scoping rule change, allowing
+ things like (defun foo (s : (l (length s))) ...).
+ Default arguments can be initialized by expressions that
+ refer to the arguments.
+
+ * eval.c (bind_args): By means of a local array, defer the evaluation
+ of optional argument init forms until the lexical environment,
+ including all the parameters, is captured. Then valuates the forms
+ in the array, and set the variable values.
+
+ * txr.1: Clarify the new scoping rules.
+
2014-01-28 Kaz Kylheku <kaz@kylheku.com>
* eval.c (eval_init): Registered existing make_catenated_stream as