diff options
| author | Feng Shu <tumashu@163.com> | 2020-10-04 06:36:48 +0800 |
|---|---|---|
| committer | Feng Shu <tumashu@163.com> | 2020-10-04 06:36:48 +0800 |
| commit | 021a851e0126788c1d899ce24557b2dc30c19078 (patch) | |
| tree | dcb0c30001baa68efdd9c8200cff8097edfd175d | |
| parent | d6b372200c6f4421631910c3b012f71c99173372 (diff) | |
* ivy-posframe.el (ivy-posframe-dispatching-done): Do not use cl-letf
| -rw-r--r-- | ivy-posframe.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 () |
