* lisp/emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
Fix typo.
This commit is contained in:
parent
25fb3d747b
commit
3f254caa51
2 changed files with 27 additions and 21 deletions
|
@ -624,7 +624,8 @@ considered."
|
|||
(interactive)
|
||||
(let* ((data (lisp-completion-at-point predicate))
|
||||
(plist (nthcdr 3 data)))
|
||||
(let ((completion-annotate-function (plist-get plist :annotate-function)))
|
||||
(let ((completion-annotate-function
|
||||
(plist-get plist :annotation-function)))
|
||||
(completion-in-region (nth 0 data) (nth 1 data) (nth 2 data)
|
||||
(plist-get plist :predicate)))))
|
||||
|
||||
|
@ -660,7 +661,7 @@ considered."
|
|||
'fboundp))))))
|
||||
(list beg end obarray
|
||||
:predicate predicate
|
||||
:annotate-function
|
||||
:annotation-function
|
||||
(unless (eq predicate 'fboundp)
|
||||
(lambda (str) (if (fboundp (intern-soft str)) " <f>")))))))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue