comparison lisp/minibuffer.el @ 107858:57532220127a

Fix Bug#5840. * ido.el (ido-file-name-all-completions-1): * minibuffer.el (minibuffer-completion-help): * net/tramp.el (tramp-completion-mode-p): Use `non-essential'.
author Michael Albinus <albinus@detlef>
date Thu, 15 Apr 2010 00:05:14 +0200
parents 75e87467a0db
children c168d4537385
comparison
equal deleted inserted replaced
107857:d1934720d87a 107858:57532220127a
1026 1026
1027 (defun minibuffer-completion-help () 1027 (defun minibuffer-completion-help ()
1028 "Display a list of possible completions of the current minibuffer contents." 1028 "Display a list of possible completions of the current minibuffer contents."
1029 (interactive) 1029 (interactive)
1030 (message "Making completion list...") 1030 (message "Making completion list...")
1031 (let* ((start (field-beginning)) 1031 (let* ((non-essential t)
1032 (start (field-beginning))
1032 (string (field-string)) 1033 (string (field-string))
1033 (completions (completion-all-completions 1034 (completions (completion-all-completions
1034 string 1035 string
1035 minibuffer-completion-table 1036 minibuffer-completion-table
1036 minibuffer-completion-predicate 1037 minibuffer-completion-predicate