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

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

[nongnu] elpa/lorem-ipsum 861e29b034 28/30: Use lexical-binding


From: ELPA Syncer
Subject: [nongnu] elpa/lorem-ipsum 861e29b034 28/30: Use lexical-binding
Date: Sun, 11 Dec 2022 20:59:24 -0500 (EST)

branch: elpa/lorem-ipsum
commit 861e29b034ae2cff48804d10595af98582c76b4a
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Joe Schafer <joe.schafer@delta46.us>

    Use lexical-binding
---
 lorem-ipsum.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lorem-ipsum.el b/lorem-ipsum.el
index c69e0346ff..255b8b8bbe 100644
--- a/lorem-ipsum.el
+++ b/lorem-ipsum.el
@@ -1,4 +1,4 @@
-;;; lorem-ipsum.el --- Insert dummy pseudo Latin text
+;;; lorem-ipsum.el --- Insert dummy pseudo Latin text  -*- lexical-binding: t 
-*-
 
 ;; Copyright (c) 2003 Jean-Philippe Theberge
 
@@ -202,7 +202,7 @@ If NUM is non-nil, insert NUM list items."
   (if (not num)(setq num 1))
   (when (> num 0)
     (insert lorem-ipsum-list-beginning)
-    (dotimes (i num)
+    (dotimes (_ num)
       (let ((para (nth (random (length lorem-ipsum-text)) lorem-ipsum-text)))
         (insert (concat lorem-ipsum-list-bullet
                         (nth (random (length para)) para)



reply via email to

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