"Dr. Arne Babenhauserheide" writes: > diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi > index 0cdf56923..5b82f8070 100644 > --- a/doc/ref/srfi-modules.texi > +++ b/doc/ref/srfi-modules.texi > +To execute a file with wisp code, select the language and filename > +extension @code{.w} vie @code{guile --language=wisp -x .w}. Arg, missed one capitalization error here. I have a local fix, but don’t want to re-send the whole squashed change for that … From 6ac896f1bbb5968eca0e4e7b95c5ee9ebf7d5dda Mon Sep 17 00:00:00 2001 From: Arne Babenhauserheide Date: Tue, 15 Aug 2023 00:43:53 +0200 Subject: [PATCH] Fix: capitalize Wisp * doc/ref/srfi-modules.texi (srfi-119): capitalize Wisp --- doc/ref/srfi-modules.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index 5b82f8070..0ffc01252 100644 --- a/doc/ref/srfi-modules.texi +++ b/doc/ref/srfi-modules.texi @@ -5686,7 +5686,7 @@ define : factorial n @result{} (define (factorial n) * n : factorial @{n - 1@} @result{} (* n (factorial @{n - 1@})))) @end example -To execute a file with wisp code, select the language and filename +To execute a file with Wisp code, select the language and filename extension @code{.w} vie @code{guile --language=wisp -x .w}. In files using Wisp, @xref{SRFI-105} (Curly Infix) is always activated. -- 2.41.0 > +;; Scheme-only implementation of a wisp-preprocessor which output a > +;; scheme code tree to feed to a scheme interpreter instead of a > +;; preprocessed file. Same here, but for Scheme: From 78287cf3b584e3c0dd481d1a4d84735165ad5e3a Mon Sep 17 00:00:00 2001 From: Arne Babenhauserheide Date: Tue, 15 Aug 2023 00:46:53 +0200 Subject: [PATCH] Fix: capitalize Scheme * modules/language/wisp.scm (comments): capitalize Scheme --- module/language/wisp.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/language/wisp.scm b/module/language/wisp.scm index b4e885eec..f3127c9d3 100644 --- a/module/language/wisp.scm +++ b/module/language/wisp.scm @@ -21,7 +21,7 @@ ;;; Commentary: ;; Scheme-only implementation of a wisp-preprocessor which output a -;; scheme code tree to feed to a scheme interpreter instead of a +;; Scheme code tree to feed to a Scheme interpreter instead of a ;; preprocessed file. ;; Limitations: -- 2.41.0 > diff --git a/module/language/wisp/spec.scm b/module/language/wisp/spec.scm > new file mode 100644 > index 000000000..1efd3e8b2 > --- /dev/null > +++ b/module/language/wisp/spec.scm > … > + #:printer write ; TODO: backtransform to wisp? Use source-properties? and here … From 9e797f17d5f001ca81b5c7e0a6b31399fec7ce6d Mon Sep 17 00:00:00 2001 From: Arne Babenhauserheide Date: Tue, 15 Aug 2023 00:56:07 +0200 Subject: [PATCH] Fix: capitalize Wisp * modules/language/wisp/spec.scm (define-language): capitalize Wisp --- module/language/wisp/spec.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/language/wisp/spec.scm b/module/language/wisp/spec.scm index 1efd3e8b2..5f8feca9a 100644 --- a/module/language/wisp/spec.scm +++ b/module/language/wisp/spec.scm @@ -57,7 +57,7 @@ #:compilers `((tree-il . ,compile-tree-il)) #:decompilers `((tree-il . ,decompile-tree-il)) #:evaluator (lambda (x module) (primitive-eval x)) - #:printer write ; TODO: backtransform to wisp? Use source-properties? + #:printer write ; TODO: backtransform to Wisp? Use source-properties? #:make-default-environment (lambda () ;; Ideally we'd duplicate the whole module hierarchy so that `set!', -- 2.41.0 That’s when I read my own patch after submission … but now that’s fixed. Best wishes, Arne -- Unpolitisch sein heißt politisch sein, ohne es zu merken. draketo.de