mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
print!: use terpri instead of princ for newline
Will produce the appropriate newline for the current OS.
This commit is contained in:
@ -101,4 +101,4 @@ Uses faces in interactive sessions and ANSI codes otherwise."
|
|||||||
(message (format! ,message ,@args))
|
(message (format! ,message ,@args))
|
||||||
;; princ prints to stdout, message to stderr
|
;; princ prints to stdout, message to stderr
|
||||||
(princ (format! ,message ,@args))
|
(princ (format! ,message ,@args))
|
||||||
(princ "\n")))
|
(terpri)))
|
||||||
|
Reference in New Issue
Block a user