summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-04-25 18:38:56 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-04-25 18:38:56 -0700
commit180ddff09533320cad4f90429950935f37c9932d (patch)
tree69dda5727cd6dd1621f67840af7ba9605666db08 /ChangeLog
parent0221c15789fc87dc41c48598c772a947a0a5620d (diff)
downloadtxr-180ddff09533320cad4f90429950935f37c9932d.tar.gz
txr-180ddff09533320cad4f90429950935f37c9932d.tar.bz2
txr-180ddff09533320cad4f90429950935f37c9932d.zip
Allow (force ...) to be an assignable place.
This allows mlet variables to be assignable. * eval.c (force_s): New global variable. (op_modplace): Handle force form. (me_mlet): Use force_s symbol. (force_l): New static function. (eval_init): Initialize force_s variable. Use it in registration of force function. * txr.1: Remove text in mlet definition that variables are not assignable. Replace with note about an unspecified behavior.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index efccd56e..9665fbba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
2015-04-25 Kaz Kylheku <kaz@kylheku.com>
+ Allow (force ...) to be an assignable place.
+
+ This allows mlet variables to be assignable.
+
+ * eval.c (force_s): New global variable.
+ (op_modplace): Handle force form.
+ (me_mlet): Use force_s symbol.
+ (force_l): New static function.
+ (eval_init): Initialize force_s variable. Use it in registration
+ of force function.
+
+ * txr.1: Remove text in mlet definition that variables
+ are not assignable. Replace with note about an unspecified behavior.
+
+2015-04-25 Kaz Kylheku <kaz@kylheku.com>
+
Introducing mlet macro.
* eval.c (me_mlet): New static function.