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

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

[nongnu] elpa/scroll-on-jump 28bac2cdc3 22/31: Cleanup: quiet checkdoc w


From: ELPA Syncer
Subject: [nongnu] elpa/scroll-on-jump 28bac2cdc3 22/31: Cleanup: quiet checkdoc warnings for wide docstrings
Date: Thu, 7 Jul 2022 12:03:14 -0400 (EDT)

branch: elpa/scroll-on-jump
commit 28bac2cdc3f575cda80208f9aa7b95c097dbd4ba
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Cleanup: quiet checkdoc warnings for wide docstrings
---
 scroll-on-jump.el | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/scroll-on-jump.el b/scroll-on-jump.el
index 273fe37f90..7640faee0b 100644
--- a/scroll-on-jump.el
+++ b/scroll-on-jump.el
@@ -507,7 +507,9 @@ without changing behavior anywhere else."
 
 ;; Helper function (not public).
 (defun scroll-on-jump-advice--wrapper (old-fn &rest args)
-  "Internal function use to advise using `scroll-on-jump-advice-add' (calling 
OLD-FN with ARGS)."
+  "Internal function use to advise using `scroll-on-jump-advice-add'.
+
+This calls (calling OLD-FN with ARGS)."
   (scroll-on-jump (apply old-fn args)))
 
 ;;;###autoload
@@ -527,7 +529,7 @@ without changing behavior anywhere else."
 
 ;;;###autoload
 (defmacro scroll-on-jump-with-scroll (&rest body)
-  "Main macro that wraps BODY in logic that reacts to change in `point' and 
vertical scroll."
+  "Main macro wrapping BODY, handling change `point' and vertical scroll."
   `(scroll-on-jump--impl t ,@body))
 
 ;;;###autoload
@@ -540,7 +542,9 @@ without changing behavior anywhere else."
 
 ;; Helper function (not public).
 (defun scroll-on-jump-advice--with-scroll-wrapper (old-fn &rest args)
-  "Internal function use to advise using `scroll-on-jump-advice-add' (calling 
OLD-FN with ARGS)."
+  "Internal function use to advise using `scroll-on-jump-advice-add'.
+
+This calls OLD-FN with ARGS."
   (scroll-on-jump-with-scroll (apply old-fn args)))
 
 ;;;###autoload



reply via email to

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