# HG changeset patch # User Glenn Morris # Date 1173430859 0 # Node ID 101916c7faf39fe10818bda80c24edbe5c98239f # Parent fddeb30f755646c000390b8e788d5c94c6c74fcb (PC-do-completion): Replace first call to try-completion with new PC-try-completion. diff -r fddeb30f7556 -r 101916c7faf3 lisp/complete.el --- 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)