From 0ca2a934c96d657c996d8b2f0241cc7e38ae2a0e Mon Sep 17 00:00:00 2001 From: Arne Babenhauserheide Date: Fri, 18 Aug 2023 19:15:20 +0200 Subject: [PATCH 18/21] SRFI-119 (Wisp): Fix comment syntax and trailing whitespace * module/language/wisp/spec.scm (define-language): comment with ;;, strip trailing lines --- module/language/wisp/spec.scm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/module/language/wisp/spec.scm b/module/language/wisp/spec.scm index 5f8feca9a..f7fd794e0 100644 --- a/module/language/wisp/spec.scm +++ b/module/language/wisp/spec.scm @@ -52,7 +52,7 @@ (define-language wisp #:title "Wisp Scheme Syntax. See SRFI-119 for details" - ; . #:reader read-one-wisp-sexp + ;; . #:reader read-one-wisp-sexp #:reader read-one-wisp-sexp ; : lambda (port env) : let ((x (read-one-wisp-sexp port env))) (display x)(newline) x ; #:compilers `((tree-il . ,compile-tree-il)) #:decompilers `((tree-il . ,decompile-tree-il)) @@ -68,6 +68,3 @@ ;; limited to the current compilation unit. (module-define! m 'current-reader (make-fluid)) m))) - - - -- 2.41.0