]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix interactive forms for rcirc-define-command
authorPhilip Kaludercic <philipk@posteo.net>
Tue, 14 Sep 2021 20:10:14 +0000 (22:10 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Tue, 14 Sep 2021 20:10:14 +0000 (22:10 +0200)
* rcirc.el (rcirc-define-command): Handle string descriptors correctly

lisp/net/rcirc.el

index b0374a545cd84417022c4a928ad1e83d291a901a..bc67562d2d3e3b568a119261e4c900d5d99f24c1 100644 (file)
@@ -2569,13 +2569,13 @@ that, an interactive form can specified."
     (when (stringp (car body))
       (setq documentation (pop body)))
     (when (eq (car-safe (car-safe body)) 'interactive)
-      (setq interactive-spec (cdr (pop body))))
+      (setq interactive-spec (cadr (pop body))))
     `(progn
        (defun ,fn-name (,argument &optional process target)
          ,(concat documentation
                   "\n\nNote: If PROCESS or TARGET are nil, the values given"
                  "\nby `rcirc-buffer-process' and `rcirc-target' will be used.")
-         (interactive (list ,@interactive-spec))
+         (interactive ,interactive-spec)
          (unless (if (listp ,argument)
                      (<= ,required (length ,argument) ,total)
                    (string-match ,regexp ,argument))