Fix another compilation warning.

* test/src/emacs-module-tests.el (multiply-string): Remove unused
variable ‘i’.
This commit is contained in:
Philipp Stephani 2019-04-28 19:21:03 +02:00
parent e4406e52a7
commit 24f717a5d7

View file

@ -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))