]> git.eshelyaron.com Git - emacs.git/commitdiff
make buffer names constant
authorAndrea Corallo <akrl@sdf.org>
Sun, 24 Nov 2019 17:42:40 +0000 (18:42 +0100)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:38:10 +0000 (11:38 +0100)
lisp/emacs-lisp/comp.el

index b1460f21c5da92e8f0990e291d5847f8e6f9e49e..1f23edb58f17ee84a597fdc4b22ae2ad96264735 100644 (file)
@@ -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.