emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 24f717a 2/2: Fix another compilation warning.


From: Philipp Stephani
Subject: [Emacs-diffs] master 24f717a 2/2: Fix another compilation warning.
Date: Sun, 28 Apr 2019 13:22:10 -0400 (EDT)

branch: master
commit 24f717a5d7de80fdd6aa061f35d04144fe1c4e10
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>

    Fix another compilation warning.
    
    * 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 51330e3..60ba71c 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))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]