mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 19:37:58 +00:00
(PC-do-completion): Replace first call to try-completion with new
PC-try-completion.
This commit is contained in:
parent
2ef31c1ca4
commit
82db2cbb43
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue