Avoid unexpected implicit completion in find-func.el
* lisp/emacs-lisp/find-func.el (find-function-read): Don't allow implicit completion, which could produce unexpected results. Patch by Jens Schmidt <jschmidt4gnu@vodafonemail.de>. (Bug#65058)
This commit is contained in:
parent
7ca4c714cb
commit
08bf8533bb
1 changed files with 1 additions and 1 deletions
|
@ -591,7 +591,7 @@ otherwise uses `variable-at-point'."
|
|||
(list (intern (completing-read
|
||||
(format-prompt "Find %s" symb prompt-type)
|
||||
obarray predicate
|
||||
t nil nil (and symb (symbol-name symb)))))))
|
||||
'lambda nil nil (and symb (symbol-name symb)))))))
|
||||
|
||||
(defun find-function-do-it (symbol type switch-fn)
|
||||
"Find Emacs Lisp SYMBOL in a buffer and display it.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue