]> git.eshelyaron.com Git - emacs.git/commitdiff
(PC-do-completion): Replace first call to try-completion with new
authorGlenn Morris <rgm@gnu.org>
Fri, 9 Mar 2007 09:00:59 +0000 (09:00 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 9 Mar 2007 09:00:59 +0000 (09:00 +0000)
PC-try-completion.

lisp/complete.el

index a5f3eea955de2d447958088b38fbcc22524c4cb4..104f37894035e23658f21c67cde1ff5840a6bb74 100644 (file)
@@ -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)