From 2ed430f471ba94b80586e9c955341b5d180acdee Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 14 Apr 2008 03:30:47 +0000 Subject: [PATCH] (minibuffer-try-completion, minibuffer-all-completions): Fix last change. --- lisp/minibuffer.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index c112db5a7c8..180a44dea15 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -218,7 +218,7 @@ ALL-COMPLETIONS is the function that lists the completions.") (if (and (symbolp table) (get table 'no-completion-styles)) (try-completion string table pred) (completion--some (lambda (style) - (funcall (intern (concat style "try-completion")) + (funcall (nth 1 (assq style completion-styles-alist)) string table pred)) completion-styles))) @@ -227,7 +227,7 @@ ALL-COMPLETIONS is the function that lists the completions.") (if (and (symbolp table) (get table 'no-completion-styles)) (all-completions string table pred hide-spaces) (completion--some (lambda (style) - (funcall (intern (concat style "all-completions")) + (funcall (nth 2 (assq style completion-styles-alist)) string table pred hide-spaces)) completion-styles)))) -- 2.39.5