From 189e401197953b8a520ccd13c3be26ee6a649d4a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 31 Dec 2017 18:32:34 -0500 Subject: [PATCH] Refactor doom/info --- core/autoload/debug.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/autoload/debug.el b/core/autoload/debug.el index e5d907837..9cd01271f 100644 --- a/core/autoload/debug.el +++ b/core/autoload/debug.el @@ -92,9 +92,9 @@ selection of all minor-modes, active or not." "Collects information about this session of Doom Emacs and copies it to the clipboard. Helpful when filing bug reports!" (interactive) - (message "Producing information about your system...") (with-temp-buffer + (message "Producing information about your system...") (call-process (expand-file-name "bin/doom-doctor" doom-emacs-dir) nil t) (ansi-color-apply-on-region (point-min) (point-max)) - (kill-new (buffer-string))) - (message "Copied to clipboard!")) + (kill-new (buffer-string)) + (message "Done. Copied to clipboard!")))