From 82db2cbb4384fa43f0e3bbbc6f17d5180725ada2 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 9 Mar 2007 09:00:59 +0000 Subject: [PATCH] (PC-do-completion): Replace first call to try-completion with new PC-try-completion. --- lisp/complete.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/complete.el b/lisp/complete.el index a5f3eea955d..104f3789403 100644 --- a/lisp/complete.el +++ b/lisp/complete.el @@ -436,7 +436,7 @@ of `minibuffer-completion-table' and the minibuffer contents.") ;; If completion-ignore-case is non-nil, insert the ;; completion string since that may have a different case. (when completion-ignore-case - (setq str (try-completion str table pred)) + (setq str (PC-try-completion str table pred)) (delete-region beg end) (insert str)) 'complete) -- 2.39.2