wisp
 
(Arne Babenhauserheide)
2013-08-20: FIX: if a line ends in #\;, do not treat the last char as comment.

FIX: if a line ends in #\;, do not treat the last char as comment.

diff --git a/wisp-guile.w b/wisp-guile.w
--- a/wisp-guile.w
+++ b/wisp-guile.w
@@ -225,6 +225,9 @@ define : splitindent inport
                 ; if nothing else is true, we are in the content
                 set! content : string-append content : string nextchar
                 set! nextchar : read-char inport
+            when commentstart 
+                set! content : string-append content comment
+                set! comment ""
             ; return the indentation, the content and the comment
             list indent content comment