From b80b338b3c32c4ee5794f8bc66105d0117e78f10 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 16 May 2021 14:21:47 -0400 Subject: [PATCH] doom--print: return message on success More in line with `message's signature. --- core/autoload/output.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/output.el b/core/autoload/output.el index 1dd3617a9..760c7318a 100644 --- a/core/autoload/output.el +++ b/core/autoload/output.el @@ -108,7 +108,7 @@ Accepts 'ansi and 'text-properties. nil means don't render colors.") (unless (string-empty-p output) (princ output) (terpri) - t)) + output)) ;;;###autoload (defun doom--output-indent (width text &optional prefix)