From: Glenn Morris Date: Fri, 9 Mar 2007 09:00:59 +0000 (+0000) Subject: (PC-do-completion): Replace first call to try-completion with new X-Git-Tag: emacs-pretest-22.0.96~188 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=82db2cbb4384fa43f0e3bbbc6f17d5180725ada2;p=emacs.git (PC-do-completion): Replace first call to try-completion with new PC-try-completion. --- 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)