mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 23:32:17 -08:00
Merge branch 'fix-stream-terpri' into 'develop'
Return NIL from stream-terpri See merge request embeddable-common-lisp/ecl!310
This commit is contained in:
commit
ff136c7df6
1 changed files with 2 additions and 1 deletions
|
|
@ -703,7 +703,8 @@
|
|||
;; TERPRI
|
||||
|
||||
(defmethod stream-terpri ((stream fundamental-character-output-stream))
|
||||
(stream-write-char stream #\Newline))
|
||||
(stream-write-char stream #\Newline)
|
||||
nil)
|
||||
|
||||
(defmethod stream-terpri ((stream ansi-stream))
|
||||
(cl:terpri stream))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue