diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-10-02 22:18:57 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-10-05 21:32:38 +0200 |
commit | 0b58be4941c92d337eccadabaaba5ef8620c5b52 (patch) | |
tree | 6bfdf8c52c510b7ff1566f1596053258c6438d5c /lisp/emacs-lisp/advice.el | |
parent | b3ade4de179d4c13cd09e2b8066e09c66355d322 (diff) | |
download | emacs-0b58be4941c92d337eccadabaaba5ef8620c5b52.tar.gz emacs-0b58be4941c92d337eccadabaaba5ef8620c5b52.tar.bz2 emacs-0b58be4941c92d337eccadabaaba5ef8620c5b52.zip |
Rename comp-subr-safe-advice -> comp-subr-trampoline-install
Diffstat (limited to 'lisp/emacs-lisp/advice.el')
-rw-r--r-- | lisp/emacs-lisp/advice.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index 4df8743de50..fb67de3a029 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el @@ -2076,7 +2076,7 @@ If FUNCTION was not advised already, its advice info will be initialized. Redefining a piece of advice whose name is part of the cache-id will clear the cache." (when (subr-primitive-p (symbol-function function)) - (comp-subr-safe-advice function)) + (comp-subr-trampoline-install function)) (cond ((not (ad-is-advised function)) (ad-initialize-advice-info function) (ad-set-advice-info-field |