From 831f5e606125c48f783daee9643d101b7fad665f Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 24 Nov 2019 18:42:40 +0100 Subject: [PATCH] make buffer names constant --- lisp/emacs-lisp/comp.el | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index b1460f21c5d..1f23edb58f1 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -75,14 +75,10 @@ This intended for debugging the compiler itself. :group 'comp) (defconst comp-log-buffer-name "*Native-compile-Log*" - "Name of the native-compiler log buffer." - :type 'string - :group 'comp) + "Name of the native-compiler log buffer.") -(defcustom comp-async-buffer-name "*Async-compilation*" - "Name of the async compilation buffer log." - :type 'string - :group 'comp) +(defconst comp-async-buffer-name "*Async-native-compile-log*" + "Name of the async compilation buffer log.") (defvar comp-native-compiling nil "This gets bound to t while native compilation. -- 2.39.5