(PC-do-completion): Replace first call to try-completion with new

PC-try-completion.
This commit is contained in:
Glenn Morris 2007-03-09 09:00:59 +00:00
parent 2ef31c1ca4
commit 82db2cbb43

View 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)