(Arne Babenhauserheide)
2014-08-17: treat tab between symbols as whitespace, but not in indentation. treat tab between symbols as whitespace, but not in indentation.
diff --git a/wisp-scheme.w b/wisp-scheme.w
--- a/wisp-scheme.w
+++ b/wisp-scheme.w
@@ -170,7 +170,7 @@ define : wisp-scheme-read-chunk-lines po
. currentindent
. currentsymbols
. emptylines
- : equal? #\space next-char ; remove whitespace when not in indent
+ : or (equal? #\space next-char) (equal? #\tab next-char) ; remove whitespace when not in indent
read-char port ; remove char
loop
. indent-and-symbols