diff options
| author | Philipp Stephani | 2019-04-28 19:21:03 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2019-04-28 19:21:03 +0200 |
| commit | 24f717a5d7de80fdd6aa061f35d04144fe1c4e10 (patch) | |
| tree | e6a93cbba5355a1a07b8a1cf92c560096c204ddd /test/src | |
| parent | e4406e52a75f222a63554769cee75c1dc920b93c (diff) | |
| download | emacs-24f717a5d7de80fdd6aa061f35d04144fe1c4e10.tar.gz emacs-24f717a5d7de80fdd6aa061f35d04144fe1c4e10.zip | |
Fix another compilation warning.
* test/src/emacs-module-tests.el (multiply-string): Remove unused
variable āiā.
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/emacs-module-tests.el | 2 |
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 | ||