branch: externals/ivy-posframe
commit ba58f6e98e0f92d122881479f50269fce49cb475
Author: SeungKi Kim <[email protected]>
Commit: SeungKi Kim <[email protected]>
Update a function name properly to ivy-posframe--dispatching-done
---
ivy-posframe.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ivy-posframe.el b/ivy-posframe.el
index 4364a74..3e387ca 100644
--- a/ivy-posframe.el
+++ b/ivy-posframe.el
@@ -332,10 +332,10 @@ This variable is useful for `ivy-posframe-read-action' .")
(declare-function swiper-avy "swiper")
(declare-function swiper--update-input-ivy "swiper")
-(defun ivy--posframe-dispatching-done ()
+(defun ivy-posframe--dispatching-done ()
"Select one of the available actions and call `ivy-done'."
(interactive)
- (let ((ivy-exit 'ivy--posframe-dispatching-done))
+ (let ((ivy-exit 'ivy-posframe--dispatching-done))
(when (ivy-read-action)
(ivy-done)))
(ivy-posframe-shrink-after-dispatching))
@@ -344,7 +344,7 @@ This variable is useful for `ivy-posframe-read-action' .")
"Ivy-posframe's `ivy-dispatching-done'."
(interactive)
(let ((ivy-read-action-function #'ivy-posframe-read-action-by-key))
- (ivy--posframe-dispatching-done)))
+ (ivy-posframe--dispatching-done)))
(defun ivy-posframe-read-action ()
"Ivy-posframe version `ivy-read-action'"