emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 41e6682: ; Fix warning in last change


From: Basil L. Contovounesios
Subject: master 41e6682: ; Fix warning in last change
Date: Tue, 12 May 2020 22:04:15 -0400 (EDT)

branch: master
commit 41e6682eb6c2dc994202120b3d85c1b6122f30e4
Author: Basil L. Contovounesios <address@hidden>
Commit: Basil L. Contovounesios <address@hidden>

    ; Fix warning in last change
    
    * lisp/play/animate.el (animate-place-char): Silence 'unused lexical
    variable' warning.
---
 lisp/play/animate.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/play/animate.el b/lisp/play/animate.el
index 56c3e35..8dec551 100644
--- a/lisp/play/animate.el
+++ b/lisp/play/animate.el
@@ -84,7 +84,7 @@
 (defun animate-place-char (char vpos hpos)
   (goto-char (window-start))
   (let (abbrev-mode)
-    (dotimes (i vpos)
+    (dotimes (_ vpos)
       (end-of-line)
       (if (= (forward-line 1) 1)
          (insert "\n"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]