Mercurial > emacs
changeset 76406:101916c7faf3
(PC-do-completion): Replace first call to try-completion with new
PC-try-completion.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 09 Mar 2007 09:00:59 +0000 |
parents | fddeb30f7556 |
children | 635d8b158d85 |
files | lisp/complete.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/complete.el Fri Mar 09 07:30:29 2007 +0000 +++ b/lisp/complete.el Fri Mar 09 09:00:59 2007 +0000 @@ -436,7 +436,7 @@ ;; 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)