From 24f717a5d7de80fdd6aa061f35d04144fe1c4e10 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sun, 28 Apr 2019 19:21:03 +0200 Subject: [PATCH] Fix another compilation warning. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * test/src/emacs-module-tests.el (multiply-string): Remove unused variable ‘i’. --- test/src/emacs-module-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.39.2