summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-01-21 10:15:07 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-01-21 10:15:07 -0800
commit47833d3b34633299a1afd778e658bc77f146a03c (patch)
tree4b6b76094ae546b24e3f0acbb495b3d7c9f46b7c /ChangeLog
parentaa355befc89d94f3f43d3ae4124f7d048fb4e588 (diff)
downloadtxr-47833d3b34633299a1afd778e658bc77f146a03c.tar.gz
txr-47833d3b34633299a1afd778e658bc77f146a03c.tar.bz2
txr-47833d3b34633299a1afd778e658bc77f146a03c.zip
Basic implementation of constantp. Does not
recognize forms like (+ 2 2) as constant. * eval.c (constantp_noex, constantp): New functions. (eval_init): Registered constantp as intrinsic. * tl.vim, txr.vim: Updated. * txr.1: Documented constantp.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d80da9c7..d1a6fa7e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2015-01-22 Kaz Kylheku <kaz@kylheku.com>
+
+ Basic implementation of constantp. Does not
+ recognize forms like (+ 2 2) as constant.
+
+ * eval.c (constantp_noex, constantp): New functions.
+ (eval_init): Registered constantp as intrinsic.
+
+ * tl.vim, txr.vim: Updated.
+
+ * txr.1: Documented constantp.
+
2015-01-21 Kaz Kylheku <kaz@kylheku.com>
* stream.c (get_string): New argument, close_after_p.