mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 05:43:19 -08:00
The newline character has to be _before_ each string in clines
This commit is contained in:
parent
3102c32ef4
commit
cbc50ceab2
1 changed files with 3 additions and 2 deletions
|
|
@ -332,10 +332,11 @@
|
|||
(wt (add-object object :permanent t))))
|
||||
(write-char c output-stream))))))
|
||||
(loop for s in *clines-string-list*
|
||||
do (terpri output-stream)
|
||||
do (if (find #\@ s)
|
||||
(parse-one-string s output-stream)
|
||||
(write-string s output-stream))
|
||||
do (terpri output-stream))
|
||||
(write-string s output-stream)))
|
||||
(terpri output-stream)
|
||||
(setf *clines-string-list* nil)))
|
||||
|
||||
;; ----------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue