diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2020-05-13 02:12:33 +0100 |
---|---|---|
committer | Basil L. Contovounesios <contovob@tcd.ie> | 2020-05-13 03:03:17 +0100 |
commit | 41e6682eb6c2dc994202120b3d85c1b6122f30e4 (patch) | |
tree | 2f256fb3757be1ab6d93f8ba5c8995c0baccb9e7 /lisp/play | |
parent | e420910eb62a635ce98e7e7abf583d0cec39f3c7 (diff) | |
download | emacs-41e6682eb6c2dc994202120b3d85c1b6122f30e4.tar.gz |
; Fix warning in last change
* lisp/play/animate.el (animate-place-char): Silence 'unused lexical
variable' warning.
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/animate.el | 2 |
1 files changed, 1 insertions, 1 deletions
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")))) |