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

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

[elpa] externals/ivy-posframe dcbbcf8 3/4: let* -> let


From: Feng Shu
Subject: [elpa] externals/ivy-posframe dcbbcf8 3/4: let* -> let
Date: Fri, 9 Oct 2020 01:19:25 -0400 (EDT)

branch: externals/ivy-posframe
commit dcbbcf8a3590251638fbdf8a1b116804089a28e6
Author: Feng Shu <tumashu@163.com>
Commit: Feng Shu <tumashu@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)



reply via email to

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