summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-25 21:04:11 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-25 21:04:11 -0800
commit807e57014e153e9c8df24ef1515dded78b5fa068 (patch)
tree15896b4c52bf4439f2ccac40846675531a2bd95d /ChangeLog
parent31f335160a38e1a3f5202e93a5ac28f32ad3c27d (diff)
downloadtxr-807e57014e153e9c8df24ef1515dded78b5fa068.tar.gz
txr-807e57014e153e9c8df24ef1515dded78b5fa068.tar.bz2
txr-807e57014e153e9c8df24ef1515dded78b5fa068.zip
* eval.c (eval_init): New functions registered.
* lib.c (sub_list, replace_list, vectorp): New functions. (sub_vec): Allow negative indices from end of array. (replace_vec): New function. * lib.h (sub_list, replace_list, vectorp, replace_vec): Declared. * parser.l (DOTDOT): Scan .. as new token. * parser.y (DOTDOT): New token. (expr): New syntax with DOTDOT. (yybadtoken): Handle DOTDOT. * txr.vim: Added new functions. Also missing append* and dwim. * txr.1: Updated.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 50f68bbc..7d1199a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
2012-01-25 Kaz Kylheku <kaz@kylheku.com>
+ * eval.c (eval_init): New functions registered.
+
+ * lib.c (sub_list, replace_list, vectorp): New functions.
+ (sub_vec): Allow negative indices from end of array.
+ (replace_vec): New function.
+
+ * lib.h (sub_list, replace_list, vectorp, replace_vec): Declared.
+
+ * parser.l (DOTDOT): Scan .. as new token.
+
+ * parser.y (DOTDOT): New token.
+ (expr): New syntax with DOTDOT.
+ (yybadtoken): Handle DOTDOT.
+
+ * txr.vim: Added new functions. Also missing append* and dwim.
+
+ * txr.1: Updated.
+
+2012-01-25 Kaz Kylheku <kaz@kylheku.com>
+
* txr.vim (txr_chr): Fix for highlighting named characters
like #\newline.