]> git.eshelyaron.com Git - emacs.git/commitdiff
* subr-x (eval-command-interactive-spec): New function.
authorSean Whitton <spwhitton@spwhitton.name>
Sun, 15 Jan 2023 17:57:30 +0000 (10:57 -0700)
committerSean Whitton <spwhitton@spwhitton.name>
Sun, 4 Jun 2023 19:16:55 +0000 (20:16 +0100)
etc/NEWS
lisp/emacs-lisp/nadvice.el
lisp/emacs-lisp/subr-x.el

index 9529282f047d013015c76088abf8d7044fd04bc5..910472e55198e80fd77aa8ae4f63ba6c1f7760ba 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -648,6 +648,11 @@ Since circular alias chains now cannot occur, 'function-alias-p',
 'indirect-function' and 'indirect-variable' will never signal an error.
 Their 'noerror' arguments have no effect and are therefore obsolete.
 
+---
+** New function 'eval-command-interactive-spec' in the subr-x library.
+This function evaluates a command's interactive form and returns the
+resultant list.
+
 \f
 * Changes in Emacs 30.1 on Non-Free Operating Systems
 
index e457387acc9d0e6bf733954fd5c616cde9a8212e..e6977f2012a7404442499e155eac5a84fc72a0cf 100644 (file)
@@ -165,6 +165,8 @@ DOC is a string where \"FUNCTION\" and \"OLDFUN\" are expected.")
          (buffer-string))
        usage))))
 
+;; FIXME: How about renaming this to just `eval-interactive-spec'?
+;; It's not specific to the advice system.
 (defun advice-eval-interactive-spec (spec)
   "Evaluate the interactive spec SPEC."
   (cond
index 9e906930b924b20b8f32e3c40e3718042ea8e10b..a7d8f7855089907150fd588c1ab6b7b131e8b388 100644 (file)
@@ -504,6 +504,13 @@ Used by `emacs-authors-mode' and `emacs-news-mode'."
                           (progn (forward-line -1) (point))
                         (point-max)))))
 
+(defun eval-command-interactive-spec (command)
+  "Evaluate COMMAND's interactive form and return resultant list.
+If COMMAND has no interactive form, return nil."
+  (advice-eval-interactive-spec
+   (cadr (or (and (symbolp command) (get command 'interactive-form))
+             (interactive-form command)))))
+
 (provide 'subr-x)
 
 ;;; subr-x.el ends here