From 021a851e0126788c1d899ce24557b2dc30c19078 Mon Sep 17 00:00:00 2001 From: Feng Shu Date: Sun, 4 Oct 2020 06:36:48 +0800 Subject: * ivy-posframe.el (ivy-posframe-dispatching-done): Do not use cl-letf --- ivy-posframe.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ivy-posframe.el b/ivy-posframe.el index ef77056..7bdbe8b 100644 --- a/ivy-posframe.el +++ b/ivy-posframe.el @@ -347,7 +347,7 @@ This variable is useful for `ivy-posframe-read-action' .") (defun ivy-posframe-dispatching-done () "Ivy-posframe's `ivy-dispatching-done'." (interactive) - (cl-letf (((symbol-function 'ivy-read-action) #'ivy-posframe-read-action)) + (let* ((ivy-read-action-function #'ivy-posframe-read-action-by-key)) (ivy-done))) (defun ivy-posframe-read-action () -- cgit v1.0