From fa8f73d9edcb60f1f480cca3ad45eec4de65afba Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 16 May 2021 18:32:22 -0400 Subject: [PATCH] Revert b80b338b3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Causes a regression where output was written into /tmp/doom.sh, producing errors like: /tmp//doom.sh: string 4: $'\E[32m✓': command not found I'll revert this until I have a better solution. --- 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 760c7318a..1dd3617a9 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) - output)) + t)) ;;;###autoload (defun doom--output-indent (width text &optional prefix)