mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Further lisp-complete-symbol related cleanup.
* lisp/emacs-lisp/lisp.el (lisp-complete-symbol): Unadvertise non-functional argument. Replace obsolete alias.
This commit is contained in:
parent
941ae9f257
commit
f42ceab546
4 changed files with 10 additions and 5 deletions
|
|
@ -746,9 +746,10 @@ The context determines which symbols are considered. If the
|
|||
symbol starts just after an open-parenthesis, only symbols with
|
||||
function definitions are considered. Otherwise, all symbols with
|
||||
function definitions, values or properties are considered."
|
||||
(declare (obsolete completion-at-point "24.4"))
|
||||
(declare (obsolete completion-at-point "24.4")
|
||||
(advertised-calling-convention () "25.1"))
|
||||
(interactive)
|
||||
(let* ((data (lisp-completion-at-point))
|
||||
(let* ((data (elisp-completion-at-point))
|
||||
(plist (nthcdr 3 data)))
|
||||
(if (null data)
|
||||
(minibuffer-message "Nothing to complete")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue