From 0482dc74018b6672a5f2d9590e52c51d1979ef52 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Tue, 17 Jun 2025 08:07:56 +0300 Subject: [PATCH] Add newline to end of .rkt file --- lib/chibi/snow/commands.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/chibi/snow/commands.scm b/lib/chibi/snow/commands.scm index 62de2d6a..284ae32b 100644 --- a/lib/chibi/snow/commands.scm +++ b/lib/chibi/snow/commands.scm @@ -1939,9 +1939,12 @@ (string-append path-without-suffix "rkt") (lambda () (map display - (list "#lang r7rs" #\newline - "(import (scheme base))" #\newline - "(include \"" (path-strip-directory path) "\")")))))))) + (list "#lang r7rs" + #\newline + "(import (scheme base))" + #\newline + "(include \"" (path-strip-directory path) "\")" + #\newline)))))))) (default-installer impl cfg library dir))) ;; installers should return the list of installed files