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

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

[elpa] externals/ivy-hydra c782b48 161/395: ivy.el (ivy-read-action-by-k


From: Basil L. Contovounesios
Subject: [elpa] externals/ivy-hydra c782b48 161/395: ivy.el (ivy-read-action-by-key): Fix for Emacs27
Date: Thu, 25 Feb 2021 08:31:53 -0500 (EST)

branch: externals/ivy-hydra
commit c782b489a7ef5a03851a64006f87c5b91aff4e00
Author: Oleh Krehel <ohwoeowho@gmail.com>
Commit: Oleh Krehel <ohwoeowho@gmail.com>

    ivy.el (ivy-read-action-by-key): Fix for Emacs27
    
    Fixes #2397
---
 ivy.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/ivy.el b/ivy.el
index 9a8210b..14e382c 100644
--- a/ivy.el
+++ b/ivy.el
@@ -941,8 +941,11 @@ selection, non-nil otherwise."
       (let ((ivy--directory ivy--directory))
         (funcall ivy-read-action-function actions)))))
 
+(defvar set-message-function)
+
 (defun ivy-read-action-by-key (actions)
-  (let* ((hint (funcall ivy-read-action-format-function (cdr actions)))
+  (let* ((set-message-function nil)
+         (hint (funcall ivy-read-action-format-function (cdr actions)))
          (resize-mini-windows t)
          (key "")
          action-idx)



reply via email to

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