diff options
author | Glenn Morris <rgm@gnu.org> | 2015-05-18 20:51:47 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-05-18 20:51:47 -0400 |
commit | f42ceab546c12534190ef0aac6db9de23c7a3e1a (patch) | |
tree | 75c99eaec4a0a06e82318d24b596861b18cdc28a /lisp/emacs-lisp/lisp.el | |
parent | 941ae9f2578ccd2760090dcd3f450339893b9492 (diff) | |
download | emacs-f42ceab546c12534190ef0aac6db9de23c7a3e1a.tar.gz |
Further lisp-complete-symbol related cleanup.
* lisp/emacs-lisp/lisp.el (lisp-complete-symbol):
Unadvertise non-functional argument. Replace obsolete alias.
Diffstat (limited to 'lisp/emacs-lisp/lisp.el')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index d401b316719..7b7b48c66de 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -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") |