From 47ccbb5d416c8dd701cf51c4db4a70b1725e46b5 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 24 May 2018 18:30:36 +0200 Subject: [PATCH] print!: use terpri instead of princ for newline Will produce the appropriate newline for the current OS. --- core/autoload/message.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/message.el b/core/autoload/message.el index f1b84a1b9..8aba7b918 100644 --- a/core/autoload/message.el +++ b/core/autoload/message.el @@ -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)))