diff options
| author | Glenn Morris | 2007-03-09 09:00:59 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-03-09 09:00:59 +0000 |
| commit | 82db2cbb4384fa43f0e3bbbc6f17d5180725ada2 (patch) | |
| tree | 1fbe292b6a77f6f114c203a61a23941d54251ee3 | |
| parent | 2ef31c1ca4e89293649afb193bbccacc636033d7 (diff) | |
| download | emacs-82db2cbb4384fa43f0e3bbbc6f17d5180725ada2.tar.gz emacs-82db2cbb4384fa43f0e3bbbc6f17d5180725ada2.zip | |
(PC-do-completion): Replace first call to try-completion with new
PC-try-completion.
| -rw-r--r-- | lisp/complete.el | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 436 | ;; If completion-ignore-case is non-nil, insert the | 436 | ;; If completion-ignore-case is non-nil, insert the |
| 437 | ;; completion string since that may have a different case. | 437 | ;; completion string since that may have a different case. |
| 438 | (when completion-ignore-case | 438 | (when completion-ignore-case |
| 439 | (setq str (try-completion str table pred)) | 439 | (setq str (PC-try-completion str table pred)) |
| 440 | (delete-region beg end) | 440 | (delete-region beg end) |
| 441 | (insert str)) | 441 | (insert str)) |
| 442 | 'complete) | 442 | 'complete) |