mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-03 19:26:36 +02:00
Add newline to end of .rkt file
This commit is contained in:
parent
232f2fe6e0
commit
0482dc7401
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue