1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 15:00:34 -08:00

* lisp/emacs-lisp/comp.el (comp-never-optimize-functions): Add yes-or-no-p

This commit is contained in:
Andrea Corallo 2020-04-16 18:59:40 +01:00
parent c5ed3a72a8
commit 886ded1b70

View file

@ -85,8 +85,11 @@ This intended for debugging the compiler itself.
:group 'comp)
(defcustom comp-never-optimize-functions
'(macroexpand scroll-down scroll-up narrow-to-region widen rename-buffer
make-indirect-buffer delete-file top-level abort-recursive-edit)
'(;; Mandatory for Emacs to be working correctly
macroexpand scroll-down scroll-up narrow-to-region widen rename-buffer
make-indirect-buffer delete-file top-level abort-recursive-edit
;; For user convenience
yes-or-no-p)
"Primitive functions for which we do not perform trampoline optimization.
This is especially usefull for primitives known to be advised if bootstrap is
performed at `comp-speed' > 0."