branch: externals/mct
commit 1cee8df0cbf41167d57efe1309839a8e4a0554f4
Author: Daniel Mendler <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Rename mct--setup-completions to mct--setup-live-completions
Avoid similar names.
---
mct.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mct.el b/mct.el
index 6e16075..55e103f 100644
--- a/mct.el
+++ b/mct.el
@@ -286,7 +286,7 @@ Meant to be added to `after-change-functions'."
(when (window-live-p (mct--get-completion-window))
(mct--live-completions-timer)))
-(defun mct--setup-completions ()
+(defun mct--setup-live-completions ()
"Set up the completions' buffer."
(cond
((memq this-command mct-completion-passlist)
@@ -313,7 +313,7 @@ Meant to be added to `after-change-functions'."
(minibuffer-with-setup-hook
(lambda ()
(setq mct--active t)
- (mct--setup-completions)
+ (mct--setup-live-completions)
(mct--setup-keymap)
(mct--setup-shadow-files))
(apply app)))