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

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

[elpa] externals/hyperbole b5e19a4ee6 08/16: Merge pull request #373 fro


From: ELPA Syncer
Subject: [elpa] externals/hyperbole b5e19a4ee6 08/16: Merge pull request #373 from rswgnu/rsw
Date: Tue, 1 Aug 2023 03:58:11 -0400 (EDT)

branch: externals/hyperbole
commit b5e19a4ee693aded71c0a37073875c6c0a24b753
Merge: b1dd46c6c6 d304487618
Author: Robert Weiner <rsw@gnu.org>
Commit: GitHub <noreply@github.com>

    Merge pull request #373 from rswgnu/rsw
    
    Fix potential unbound use of vertico-mouse-mode
---
 hyperbole.el | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/hyperbole.el b/hyperbole.el
index f54a4aa07e..6746bcfc13 100644
--- a/hyperbole.el
+++ b/hyperbole.el
@@ -7,7 +7,7 @@
 ;; Author:       Bob Weiner
 ;; Maintainer:   Bob Weiner <rsw@gnu.org>, Mats Lidell <matsl@gnu.org>
 ;; Created:      06-Oct-92 at 11:52:51
-;; Last-Mod:     30-Jul-23 at 10:18:28 by Bob Weiner
+;; Last-Mod:     31-Jul-23 at 23:47:17 by Bob Weiner
 ;; Released:     03-Dec-22
 ;; Version:      8.0.1pre
 ;; Keywords:     comm, convenience, files, frames, hypermedia, languages, 
mail, matching, mouse, multimedia, outlines, tools, wp
@@ -487,8 +487,10 @@ frame, those functions by default still return the prior 
frame."
                              t)))
   ;;
   ;; When vertico-mode is used, vertico-mouse-mode is needed for the
-  ;; Action Key to properly select completions from the candidate list.
-  (when (fboundp #'vertico-mode)
+  ;; Action Key to properly select completions from the candidate
+  ;; list, so force its usage when vertico-mode is invoked.
+  ;; vertico-mouse-mode should be an autoload.
+  (when (fboundp #'vertico-mouse-mode)
     (add-hook 'vertico-mode-hook (lambda () (vertico-mouse-mode 1))))
   ;;
   ;; Hyperbole initialization is complete.



reply via email to

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