mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-04 03:36: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")
|
(string-append path-without-suffix "rkt")
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(map display
|
(map display
|
||||||
(list "#lang r7rs" #\newline
|
(list "#lang r7rs"
|
||||||
"(import (scheme base))" #\newline
|
#\newline
|
||||||
"(include \"" (path-strip-directory path) "\")"))))))))
|
"(import (scheme base))"
|
||||||
|
#\newline
|
||||||
|
"(include \"" (path-strip-directory path) "\")"
|
||||||
|
#\newline))))))))
|
||||||
(default-installer impl cfg library dir)))
|
(default-installer impl cfg library dir)))
|
||||||
|
|
||||||
;; installers should return the list of installed files
|
;; installers should return the list of installed files
|
||||||
|
|
Loading…
Add table
Reference in a new issue