]> git.eshelyaron.com Git - emacs.git/commitdiff
* Add 'eval' to 'native-comp-never-optimize-functions' (bug#67141)
authorAndrea Corallo <acorallo@gnu.org>
Mon, 20 Nov 2023 08:45:33 +0000 (09:45 +0100)
committerAndrea Corallo <acorallo@gnu.org>
Mon, 20 Nov 2023 08:47:24 +0000 (09:47 +0100)
* lisp/emacs-lisp/comp-common.el (native-comp-never-optimize-functions):
Add 'eval'.

lisp/emacs-lisp/comp-common.el

index 6318f2a22e5b112f71954bc0f4f0205d09eaac23..1bdb728039952f6cf0642f18d7096aa1260622fe 100644 (file)
@@ -49,7 +49,8 @@ This is intended for debugging the compiler itself.
   :version "28.1")
 
 (defcustom native-comp-never-optimize-functions
-  '(;; The following two are mandatory for Emacs to be working
+  '(eval
+    ;; The following two are mandatory for Emacs to be working
     ;; correctly (see comment in `advice--add-function'). DO NOT
     ;; REMOVE.
     macroexpand rename-buffer)