diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-09-19 22:33:34 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-09-24 09:57:17 +0200 |
commit | db354ffd578a46d898cac161ea1de1b42f96d2a0 (patch) | |
tree | 2fb34c0a511c9bef424d9f468387db89ac212561 /lisp/emacs-lisp/nadvice.el | |
parent | 3ec1b932c9c57d200c3a3f2fb9a0c59c4acc8011 (diff) | |
download | emacs-db354ffd578a46d898cac161ea1de1b42f96d2a0.tar.gz emacs-db354ffd578a46d898cac161ea1de1b42f96d2a0.tar.bz2 emacs-db354ffd578a46d898cac161ea1de1b42f96d2a0.zip |
Call `comp--subr-safe-advice' from the advice machinery
* lisp/emacs-lisp/nadvice.el (advice--add-function): Call
`comp--subr-safe-advice' when necessary.
* lisp/emacs-lisp/advice.el (ad-add-advice): Likewhise.
Diffstat (limited to 'lisp/emacs-lisp/nadvice.el')
-rw-r--r-- | lisp/emacs-lisp/nadvice.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/nadvice.el b/lisp/emacs-lisp/nadvice.el index b779aa27888..32b5df8f261 100644 --- a/lisp/emacs-lisp/nadvice.el +++ b/lisp/emacs-lisp/nadvice.el @@ -318,6 +318,22 @@ is also interactive. There are 3 cases: ;;;###autoload (defun advice--add-function (where ref function props) + (when (and (boundp 'comp-ctxt) + (subr-primitive-p (gv-deref ref))) + (let ((subr-name (intern (subr-name (gv-deref ref))))) + ;; Requiring the native compiler to advice `macroexpand' cause a + ;; circular dependency in eager macro expansion. + ;; uniquify is advising `rename-buffer' while being loaded in + ;; loadup.el. This would require the whole native compiler + ;; machinery but we don't want to include it in the dump. + ;; Because these two functions are already handled in + ;; `comp-never-optimize-functions' we hack the problem this way + ;; for now :/ + (unless (memq subr-name '(macroexpand rename-buffer)) + ;; Must require explicitly as during bootstrap we have no + ;; autoloads. + (require 'comp) + (comp--subr-safe-advice subr-name)))) (let* ((name (cdr (assq 'name props))) (a (advice--member-p (or name function) (if name t) (gv-deref ref)))) (when a |