branch: elpa/adoc-mode commit 2fdc443435e0f39b7319f3032c098f3fe79590cd Author: Bozhidar Batsov <bozhi...@batsov.dev> Commit: Bozhidar Batsov <bozhi...@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))