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:
parent
c5ed3a72a8
commit
886ded1b70
1 changed files with 5 additions and 2 deletions
|
|
@ -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."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue