From 41e6682eb6c2dc994202120b3d85c1b6122f30e4 Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Wed, 13 May 2020 02:12:33 +0100 Subject: [PATCH] ; 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 56c3e350e29..8dec55178b1 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")))) -- 2.39.2