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 | |
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')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 5 | ||||
-rw-r--r-- | lisp/hippie-exp.el | 4 | ||||
-rw-r--r-- | lisp/ses.el | 2 |
3 files changed, 6 insertions, 5 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") diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index b167671ab0b..a19ff32f1da 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el @@ -99,10 +99,10 @@ ;; from the kill ring. May be good if you don't know how far up in ;; the kill-ring the required entry is, and don't want to mess with ;; "Choose Next Paste". -;; `try-complete-lisp-symbol' : like `lisp-complete-symbol', but goes +;; `try-complete-lisp-symbol' : like `elisp-completion-at-point', but goes ;; through all possibilities instead of completing what is unique. ;; Might be tedious (usually a lot of possible completions) and -;; since its function is much like `lisp-complete-symbol', which +;; since its function is much like `completion-at-point', which ;; already has a key of its own, you might want to remove this. ;; `try-complete-lisp-symbol-partially' : To insert in the list just ;; before `try-complete-lisp-symbol' for those who first want to get diff --git a/lisp/ses.el b/lisp/ses.el index e9860158450..3336769270c 100644 --- a/lisp/ses.el +++ b/lisp/ses.el @@ -172,7 +172,7 @@ Each function is called with ARG=1." "\C-c\C-s" ses-insert-ses-range [S-mouse-3] ses-insert-range-click [C-S-mouse-3] ses-insert-ses-range-click - "\M-\C-i" lisp-complete-symbol)) + "\M-\C-i" lisp-complete-symbol)) ; FIXME obsolete (newmap (make-sparse-keymap))) (set-keymap-parent newmap minibuffer-local-map) (while keys |