]> git.eshelyaron.com Git - emacs.git/commitdiff
; advice--interactive-form: Fix a typo introduced in recent change
authorŠtěpán Němec <stepnem@gmail.com>
Sun, 14 Aug 2022 08:23:29 +0000 (10:23 +0200)
committerŠtěpán Němec <stepnem@gmail.com>
Sun, 14 Aug 2022 08:23:29 +0000 (10:23 +0200)
* lisp/emacs-lisp/nadvice.el (advice--interactive-form): Fix a typo.

lisp/emacs-lisp/nadvice.el

index 86f26fc0d84091f35d3c2c9ce3dac745cda0d194..a9a20ab5abf0cb56e9c8732c701a9bddc5dd4496 100644 (file)
@@ -170,7 +170,7 @@ DOC is a string where \"FUNCTION\" and \"OLDFUN\" are expected.")
   (if (not (and (symbolp function) (autoloadp (indirect-function function))))
       (interactive-form function)
     (when (commandp function)
-      `(interactive (advice--eval-interactive-spec
+      `(interactive (advice-eval-interactive-spec
                      (cadr (interactive-form ',function)))))))
 
 (defun advice--make-interactive-form (iff ifm)