From: Philipp Stephani Date: Sun, 28 Apr 2019 17:21:03 +0000 (+0200) Subject: Fix another compilation warning. X-Git-Tag: emacs-27.0.90~3055 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=24f717a5d7de80fdd6aa061f35d04144fe1c4e10;p=emacs.git Fix another compilation warning. * test/src/emacs-module-tests.el (multiply-string): Remove unused variable ā€˜iā€™. --- diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el index 51330e305f6..60ba71c57b9 100644 --- a/test/src/emacs-module-tests.el +++ b/test/src/emacs-module-tests.el @@ -147,7 +147,7 @@ changes." (defun multiply-string (s n) "Return N copies of S concatenated together." (let ((res "")) - (dotimes (i n) + (dotimes (_ n) (setq res (concat res s))) res))