diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-01-25 21:04:11 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-01-25 21:04:11 -0800 |
commit | 807e57014e153e9c8df24ef1515dded78b5fa068 (patch) | |
tree | 15896b4c52bf4439f2ccac40846675531a2bd95d /ChangeLog | |
parent | 31f335160a38e1a3f5202e93a5ac28f32ad3c27d (diff) | |
download | txr-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-- | ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -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. |