diff options
| author | Andrea Corallo | 2023-11-20 09:45:33 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2023-11-20 09:47:24 +0100 |
| commit | ea7a52dbaed378b51cb0bab33afb34cc3a7c3e7e (patch) | |
| tree | ffdd22c189c2e6e03fca662f1a7275500dc5f295 | |
| parent | 16ac377aab257d635918dd0188dcdf630e75757c (diff) | |
| download | emacs-ea7a52dbaed378b51cb0bab33afb34cc3a7c3e7e.tar.gz emacs-ea7a52dbaed378b51cb0bab33afb34cc3a7c3e7e.zip | |
* Add 'eval' to 'native-comp-never-optimize-functions' (bug#67141)
* lisp/emacs-lisp/comp-common.el (native-comp-never-optimize-functions):
Add 'eval'.
| -rw-r--r-- | lisp/emacs-lisp/comp-common.el | 3 |
1 files changed, 2 insertions, 1 deletions
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. | |||
| 49 | :version "28.1") | 49 | :version "28.1") |
| 50 | 50 | ||
| 51 | (defcustom native-comp-never-optimize-functions | 51 | (defcustom native-comp-never-optimize-functions |
| 52 | '(;; The following two are mandatory for Emacs to be working | 52 | '(eval |
| 53 | ;; The following two are mandatory for Emacs to be working | ||
| 53 | ;; correctly (see comment in `advice--add-function'). DO NOT | 54 | ;; correctly (see comment in `advice--add-function'). DO NOT |
| 54 | ;; REMOVE. | 55 | ;; REMOVE. |
| 55 | macroexpand rename-buffer) | 56 | macroexpand rename-buffer) |