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

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

[elpa] externals/avy ba5f035be3 27/31: Fix two byte-compiler warnings


From: ELPA Syncer
Subject: [elpa] externals/avy ba5f035be3 27/31: Fix two byte-compiler warnings
Date: Mon, 13 Feb 2023 21:57:28 -0500 (EST)

branch: externals/avy
commit ba5f035be33693d1a136a5cbeedb24327f551a92
Author: Stefan Kangas <stefan@marxist.se>
Commit: Oleh Krehel <ohwoeowho@gmail.com>

    Fix two byte-compiler warnings
    
    Fixes #336
---
 avy.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/avy.el b/avy.el
index be2432eb65..5d0bc9ebb9 100644
--- a/avy.el
+++ b/avy.el
@@ -494,8 +494,8 @@ KEYS is the path from the root of `avy-tree' to LEAF."
   "Store the current incomplete path during `avy-read'.")
 
 (defun avy-mouse-event-window (char)
-  "If CHAR is a mouse event, return the window of the event if any or the 
selected window.
-Return nil if not a mouse event."
+  "Return the window of mouse event CHAR if any or the selected window.
+Return nil if CHAR is not a mouse event."
   (when (mouse-event-p char)
     (cond ((windowp (posn-window (event-start char)))
            (posn-window (event-start char)))
@@ -1605,7 +1605,8 @@ Which one depends on variable `subword-mode'."
 (defvar visual-line-mode)
 
 (defcustom avy-indent-line-overlay nil
-  "When non-nil, `avy-goto-line' will display the line overlay next to the 
first non-whitespace character of each line."
+  "When non-nil, display line overlay next to the first non-whitespace 
character.
+This affects `avy-goto-line'."
   :type 'boolean)
 
 (defun avy--line-cands (&optional arg beg end bottom-up)



reply via email to

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