branch: externals/ivy-posframe commit dcbbcf8a3590251638fbdf8a1b116804089a28e6 Author: Feng Shu <tuma...@163.com> Commit: Feng Shu <tuma...@163.com>
let* -> let * ivy-posframe.el (ivy-posframe-read-action) (ivy-posframe-dispatching-done): use let instead let* --- ivy-posframe.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ivy-posframe.el b/ivy-posframe.el index f716db1..240eebf 100644 --- a/ivy-posframe.el +++ b/ivy-posframe.el @@ -333,13 +333,13 @@ This variable is useful for `ivy-posframe-read-action' .") (defun ivy-posframe-dispatching-done () "Ivy-posframe's `ivy-dispatching-done'." (interactive) - (let* ((ivy-read-action-function #'ivy-posframe-read-action-by-key)) + (let ((ivy-read-action-function #'ivy-posframe-read-action-by-key)) (ivy-dispatching-done))) (defun ivy-posframe-read-action () "Ivy-posframe version `ivy-read-action'" (interactive) - (let* ((ivy-read-action-function #'ivy-posframe-read-action-by-key)) + (let ((ivy-read-action-function #'ivy-posframe-read-action-by-key)) (call-interactively #'ivy-read-action))) (defun ivy-posframe-read-action-by-key (actions)