print!: use terpri instead of princ for newline

Will produce the appropriate newline for the current OS.
This commit is contained in:
Henrik Lissner
2018-05-24 18:30:36 +02:00
parent e3bdeabe0b
commit 47ccbb5d41

View File

@ -101,4 +101,4 @@ Uses faces in interactive sessions and ANSI codes otherwise."
(message (format! ,message ,@args))
;; princ prints to stdout, message to stderr
(princ (format! ,message ,@args))
(princ "\n")))
(terpri)))