Fix another compilation warning.
* test/src/emacs-module-tests.el (multiply-string): Remove unused variable ‘i’.
This commit is contained in:
parent
e4406e52a7
commit
24f717a5d7
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue