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

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

[nongnu] elpa/undo-fu-session 191babe23c 24/53: Cleanup: docstring width


From: ELPA Syncer
Subject: [nongnu] elpa/undo-fu-session 191babe23c 24/53: Cleanup: docstring width warnings
Date: Thu, 7 Jul 2022 12:05:17 -0400 (EDT)

branch: elpa/undo-fu-session
commit 191babe23cd9b058938f9d4b3ae961b847b02959
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Cleanup: docstring width warnings
---
 undo-fu-session.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/undo-fu-session.el b/undo-fu-session.el
index abe4bd7d03..1f59ce4a8a 100644
--- a/undo-fu-session.el
+++ b/undo-fu-session.el
@@ -238,7 +238,9 @@ Argument LIST compatible list `buffer-undo-list'."
   list)
 
 (defun undo-fu-session--list-to-index-map (list index index-step 
step-to-index-hash)
-  "Populate the STEP-TO-INDEX-HASH with LIST element as keys mapping to INDEX 
by INDEX-STEP."
+  "Populate the STEP-TO-INDEX-HASH with LIST element.
+
+List elements are used as keys mapping to INDEX by INDEX-STEP."
   (unless (eq list t)
     (while list
       (puthash list index step-to-index-hash)
@@ -246,7 +248,9 @@ Argument LIST compatible list `buffer-undo-list'."
       (setq list (undo-fu-session--next-step list)))))
 
 (defun undo-fu-session--list-from-index-map (list index index-step 
step-from-index-hash)
-  "Populate the STEP-FROM-INDEX-HASH with INDEX by INDEX-STEP as keys mapping 
to LIST elements."
+  "Populate the STEP-FROM-INDEX-HASH with INDEX by INDEX-STEP.
+
+INDEX-STEP are used as keys mapping to LIST elements."
   (unless (eq list t)
     (while list
       (puthash index list step-from-index-hash)



reply via email to

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