summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/easy-mmode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
index 01fb58e863a..7e5e2a9b8a9 100644
--- a/lisp/emacs-lisp/easy-mmode.el
+++ b/lisp/emacs-lisp/easy-mmode.el
@@ -314,10 +314,10 @@ or call the function `%s'."))))
;; repeat-command still does the toggling correctly.
(if (consp interactive)
`(interactive
- ,interactive
(list (if current-prefix-arg
(prefix-numeric-value current-prefix-arg)
- 'toggle)))
+ 'toggle))
+ ,@interactive)
'(interactive (list (if current-prefix-arg
(prefix-numeric-value current-prefix-arg)
'toggle)))))