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!")))