branch: elpa/popup
commit 1f1f7a06aa7bf2b676ef881ec1457ef87295d514
Author: Syohei YOSHIDA <syo...@gmail.com>
Commit: Syohei YOSHIDA <syo...@gmail.com>

    refactoring #80
---
 popup.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/popup.el b/popup.el
index 9287706..55795d0 100644
--- a/popup.el
+++ b/popup.el
@@ -1384,8 +1384,8 @@ If `INITIAL-INDEX' is non-nil, this is an initial index 
value for
             (popup-jump menu cursor)
           (popup-draw menu))
         (when initial-index
-          (dotimes (counter (min (- (length list) 1) initial-index))
-              (popup-next menu)))
+          (dotimes (_i (min (- (length list) 1) initial-index))
+            (popup-next menu)))
         (if nowait
             menu
           (popup-menu-event-loop menu keymap fallback

Reply via email to