Update of /cvsroot/wisp/wisp/doc
In directory usw-pr-cvs1:/tmp/cvs-serv642/doc
Modified Files:
TODO wisp.vim
Log Message:
Implemented the #/.../ regex syntax.
Index: TODO
===================================================================
RCS file: /cvsroot/wisp/wisp/doc/TODO,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -d -r1.68 -r1.69
--- TODO 4 Sep 2002 14:31:48 -0000 1.68
+++ TODO 4 Sep 2002 14:39:07 -0000 1.69
@@ -69,7 +69,6 @@
- RPC.
- Readline support.
- Reduce the number of interobject pointers and malloc:s for sake of speed.
-- Regex syntax should be #/.../.
- Replace the linked lists in hashes with variable-length vectors.
- Revise the SF mission statement. DWIM is one of the goals again.
- Rewrite an optimizer. Currently, proper tail recursion is not done.
Index: wisp.vim
===================================================================
RCS file: /cvsroot/wisp/wisp/doc/wisp.vim,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -d -r1.221 -r1.222
--- wisp.vim 4 Sep 2002 14:37:33 -0000 1.221
+++ wisp.vim 4 Sep 2002 14:39:07 -0000 1.222
@@ -109,10 +109,10 @@
syn keyword wispSyntax do else except export finally fluid-my hide
syn keyword wispSyntax hide* hold if incr! lambda lambda-pack let let*
syn keyword wispSyntax let-syntax letrec letrec-syntax metacode module
-syn keyword wispSyntax my my-port or phase quasiquote quote rec serial
-syn keyword wispSyntax set! splicing string-template sub swap!
-syn keyword wispSyntax syntax-rules try type unless unquote use when
-syn keyword wispSyntax while
+syn keyword wispSyntax my my-port or phase quasiquote quote rec regex
+syn keyword wispSyntax regex-template serial set! splicing
+syn keyword wispSyntax string-template sub swap! syntax-rules try type
+syn keyword wispSyntax unless unquote use when while
syn keyword wispFunc * + - / /= < << <= = > >= >> abs address-of
syn keyword wispFunc alist->dict alist->vector alist-copy analyse angle
|