diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-04-11 19:22:37 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-04-11 19:22:37 -0700 |
commit | f1a5e50f78927a362f244f0adfc1d23813c93073 (patch) | |
tree | 7a4207a469342a77c0653e9f6041de516af2ba4c /tl.vim | |
parent | 387d9c08e44db206e995bbbf272b7b8ea8580ad7 (diff) | |
download | txr-f1a5e50f78927a362f244f0adfc1d23813c93073.tar.gz txr-f1a5e50f78927a362f244f0adfc1d23813c93073.tar.bz2 txr-f1a5e50f78927a362f244f0adfc1d23813c93073.zip |
Implementing while* and until* loops.
* eval.c (while_star_s, until_star_s): New symbol variables.
(me_while_star, me_until_star): New static functions.
(eval_init): Initialize new variables. Register while* and
until* macros.
* txr.1: Documented while* and until*.
* txr.vim, tl.vim: Regenerated.
Diffstat (limited to 'tl.vim')
-rw-r--r-- | tl.vim | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -189,16 +189,16 @@ syn keyword txl_keyword contained trim-str true trunc trunc-rem syn keyword txl_keyword contained tuples txr-case txr-if txr-when syn keyword txl_keyword contained typeof unget-byte unget-char uniq syn keyword txl_keyword contained unique unless unquote until -syn keyword txl_keyword contained upcase-str update url-decode url-encode -syn keyword txl_keyword contained usleep uw-protect vec vec-push -syn keyword txl_keyword contained vec-set-length vecref vector vector-list -syn keyword txl_keyword contained vectorp w-continued w-coredump w-exitstatus -syn keyword txl_keyword contained w-ifcontinued w-ifexited w-ifsignaled w-ifstopped -syn keyword txl_keyword contained w-nohang w-stopsig w-termsig w-untraced -syn keyword txl_keyword contained wait weave when whenlet -syn keyword txl_keyword contained where while whilet width -syn keyword txl_keyword contained with-saved-vars wrap wrap* zap -syn keyword txl_keyword contained zerop zip +syn keyword txl_keyword contained until* upcase-str update url-decode +syn keyword txl_keyword contained url-encode usleep uw-protect vec +syn keyword txl_keyword contained vec-push vec-set-length vecref vector +syn keyword txl_keyword contained vector-list vectorp w-continued w-coredump +syn keyword txl_keyword contained w-exitstatus w-ifcontinued w-ifexited w-ifsignaled +syn keyword txl_keyword contained w-ifstopped w-nohang w-stopsig w-termsig +syn keyword txl_keyword contained w-untraced wait weave when +syn keyword txl_keyword contained whenlet where while while* +syn keyword txl_keyword contained whilet width with-saved-vars wrap +syn keyword txl_keyword contained wrap* zap zerop zip syn match txr_metanum "@[0-9]\+" syn match txr_nested_error "[^\t `]\+" contained |