summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeng Shu <tumashu@163.com>2020-10-09 13:16:48 +0800
committerFeng Shu <tumashu@163.com>2020-10-09 13:16:48 +0800
commitdcbbcf8a3590251638fbdf8a1b116804089a28e6 (patch)
treeabb3dbc5ccb6636b57d30886bf40ae89e56d988b
parentd16fbb0ca2bb31bb133bcbddce3f28eb08e66f3e (diff)
let* -> let
* ivy-posframe.el (ivy-posframe-read-action) (ivy-posframe-dispatching-done): use let instead let*
-rw-r--r--ivy-posframe.el4
1 files 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)