branch: elpa/multiple-cursors
commit 876937bfa3d2d341434a6913cdff1060eb25bd48
Author: Marco Baringer <[email protected]>
Commit: Marco Baringer <[email protected]>
Use (interactive "P") instead of the weird (but equivalent) (interactive
(list prefix-arg))
---
mc-cycle-cursors.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mc-cycle-cursors.el b/mc-cycle-cursors.el
index 2aaade0..643f00e 100644
--- a/mc-cycle-cursors.el
+++ b/mc-cycle-cursors.el
@@ -55,7 +55,7 @@
prev))
(defun mc/cycle-forward (&optional error-if-no-next-cursor)
- (interactive (list prefix-arg))
+ (interactive "P")
(let ((next-cursor (mc/next-cursor-after-point)))
(cond
(next-cursor
@@ -68,7 +68,7 @@
(mc/cycle-backward t)))))
(defun mc/cycle-backward (&optional error-if-no-previous-cursor)
- (interactive (list prefix-arg))
+ (interactive "P")
(let ((prev-cursor (mc/prev-cursor-before-point)))
(cond
(prev-cursor