aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/complete.el2
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)