aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/emacs-module-tests.el2
1 files changed, 1 insertions, 1 deletions
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."
147(defun multiply-string (s n) 147(defun multiply-string (s n)
148 "Return N copies of S concatenated together." 148 "Return N copies of S concatenated together."
149 (let ((res "")) 149 (let ((res ""))
150 (dotimes (i n) 150 (dotimes (_ n)
151 (setq res (concat res s))) 151 (setq res (concat res s)))
152 res)) 152 res))
153 153