From: Andrea Corallo Date: Mon, 20 Nov 2023 08:45:33 +0000 (+0100) Subject: * Add 'eval' to 'native-comp-never-optimize-functions' (bug#67141) X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ea7a52dbaed378b51cb0bab33afb34cc3a7c3e7e;p=emacs.git * Add 'eval' to 'native-comp-never-optimize-functions' (bug#67141) * lisp/emacs-lisp/comp-common.el (native-comp-never-optimize-functions): Add 'eval'. --- 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)