[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)
- [elpa] externals/avy 954774d6e9 17/31: avy.el (avy-action-yank-line): Add and bind to "Y", (continued)
- [elpa] externals/avy 954774d6e9 17/31: avy.el (avy-action-yank-line): Add and bind to "Y", ELPA Syncer, 2023/02/13
- [elpa] externals/avy 3bf83140fa 16/31: avy.el (avy-goto-line): Can cancel with ESC, ELPA Syncer, 2023/02/13
- [elpa] externals/avy aa35412375 18/31: avy.el (avy--line-cands): Don't set temporary-goal-column, ELPA Syncer, 2023/02/13
- [elpa] externals/avy f34ff764aa 22/31: avy.el (avy-escape-chars): Add defcustom, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 2dde8b71a0 23/31: avy.el (avy-process): Add autoload, ELPA Syncer, 2023/02/13
- [elpa] externals/avy e92cb37457 25/31: avy.el (avy-transpose-lines-in-region): Add, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 6b53033883 26/31: Add GNU ELPA badge to README.md, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 955c8dedd6 30/31: avy.el (avy--overlay): Avoid error on empty string, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 9b1f0bc427 31/31: Merge remote-tracking branch 'refs/remotes/upstream/avy/main' into elpa--merge/avy, ELPA Syncer, 2023/02/13
- [elpa] externals/avy aadca9308a 03/31: avy.el (avy-resume): Work better for avy-goto-timer, ELPA Syncer, 2023/02/13
- [elpa] externals/avy ba5f035be3 27/31: Fix two byte-compiler warnings,
ELPA Syncer <=
- [elpa] externals/avy acf553cae2 20/31: avy.el (avy--overlay-pre): Fix conflict with visual-line-mode, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 36a48baa2c 21/31: avy.el (avy-goto-char-2): Allow backspace, ELPA Syncer, 2023/02/13
- [elpa] externals/avy fd7b02f556 28/31: Add `avy-action-oneshot` variable to redefine avy-action locally, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 6f9eefadc9 29/31: avy.el (avy-process): Assume avy-action-oneshot will be let-bound, ELPA Syncer, 2023/02/13