From 876937bfa3d2d341434a6913cdff1060eb25bd48 Mon Sep 17 00:00:00 2001 From: Marco Baringer Date: Wed, 10 Oct 2012 10:04:22 +0200 Subject: [PATCH] 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