From ea7a52dbaed378b51cb0bab33afb34cc3a7c3e7e Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Mon, 20 Nov 2023 09:45:33 +0100 Subject: [PATCH] * Add 'eval' to 'native-comp-never-optimize-functions' (bug#67141) * lisp/emacs-lisp/comp-common.el (native-comp-never-optimize-functions): Add 'eval'. --- lisp/emacs-lisp/comp-common.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/comp-common.el b/lisp/emacs-lisp/comp-common.el index 6318f2a22e5..1bdb7280399 100644 --- a/lisp/emacs-lisp/comp-common.el +++ b/lisp/emacs-lisp/comp-common.el @@ -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) -- 2.39.5