From: Radon Rosborough Date: Tue, 5 Dec 2017 06:44:22 +0000 (-0800) Subject: Fix function accidentally made interactive X-Git-Tag: emacs-29.0.90~1306^2~15^2~143 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f037c2daeb8146780cdd56f9e45c857d76a7bb06;p=emacs.git Fix function accidentally made interactive --- diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index acf053baf52..15ca2649e5c 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -819,7 +819,9 @@ representing symbols (that may need to be autloaded)." ;;;; :disabled -(defalias 'use-package-normalize/:disabled 'ignore) +;; Don't alias this to `ignore', as that will cause the resulting +;; function to be interactive. +(defun use-package-normalize/:disabled (name keyword arg rest state)) (defun use-package-handler/:disabled (name keyword arg rest state) (use-package-process-keywords name rest state))