aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/complete.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/complete.el b/lisp/complete.el
index df1bc2bfd8b..ca6231893c3 100644
--- a/lisp/complete.el
+++ b/lisp/complete.el
@@ -234,7 +234,9 @@ second TAB brings up the `*Completions*' buffer."
234 (funcall 234 (funcall
235 (if partial-completion-mode 'add-hook 'remove-hook) 235 (if partial-completion-mode 'add-hook 'remove-hook)
236 'choose-completion-string-functions 236 'choose-completion-string-functions
237 (lambda (&rest x) (goto-char (point-max)) nil)) 237 (lambda (choice buffer mini-p base-size)
238 (if mini-p (goto-char (point-max)))
239 nil))
238 ;; Build the env-completion and mapping table. 240 ;; Build the env-completion and mapping table.
239 (when (and partial-completion-mode (null PC-env-vars-alist)) 241 (when (and partial-completion-mode (null PC-env-vars-alist))
240 (setq PC-env-vars-alist 242 (setq PC-env-vars-alist