emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/adoc-mode 2fdc443435 168/199: Fix a compilation warning


From: ELPA Syncer
Subject: [nongnu] elpa/adoc-mode 2fdc443435 168/199: Fix a compilation warning
Date: Sun, 3 Sep 2023 06:59:43 -0400 (EDT)

branch: elpa/adoc-mode
commit 2fdc443435e0f39b7319f3032c098f3fe79590cd
Author: Bozhidar Batsov <bozhidar@batsov.dev>
Commit: Bozhidar Batsov <bozhidar@batsov.dev>

    Fix a compilation warning
---
 adoc-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/adoc-mode.el b/adoc-mode.el
index 5de20a5e3b..5bb07132b6 100644
--- a/adoc-mode.el
+++ b/adoc-mode.el
@@ -2635,7 +2635,7 @@ Is influenced by customization variables such as 
`adoc-title-style'."))))
 (defun adoc-repeat-string (str n)
   "Returns str n times concatenated"
   (let ((retval ""))
-    (dotimes (i n)
+    (dotimes (_i n)
       (setq retval (concat retval str)))
     retval))
 



reply via email to

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