]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix warning in last change
authorBasil L. Contovounesios <contovob@tcd.ie>
Wed, 13 May 2020 01:12:33 +0000 (02:12 +0100)
committerBasil L. Contovounesios <contovob@tcd.ie>
Wed, 13 May 2020 02:03:17 +0000 (03:03 +0100)
* lisp/play/animate.el (animate-place-char): Silence 'unused lexical
variable' warning.

lisp/play/animate.el

index 56c3e350e29fd673ccd06246928e7de3af9ecfd0..8dec55178b152b18752703e37ad02d6ce7fd931e 100644 (file)
@@ -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"))))