diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-04-17 16:52:02 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-04-17 16:52:02 -0400 |
commit | dd8791e96feb4915c895a4879deee67e672e0a7f (patch) | |
tree | 792850fb6f8dbd3a0af60e761d3bd7fbef972291 /lisp/minibuffer.el | |
parent | ffe54a139dddefdfd3f0837281ebb62d7cc0a912 (diff) | |
download | emacs-dd8791e96feb4915c895a4879deee67e672e0a7f.tar.gz |
* lisp/emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
completion tables when completing error conditions and
`declare' arguments.
(lisp-complete-symbol, field-complete): Mark as obsolete.
(check-parens): Unmatched parens are user errors.
* lisp/minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 06ac7a91bea..64e816cef38 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -638,7 +638,8 @@ If ARGS are provided, then pass MESSAGE through `format'." (defun minibuffer-completion-contents () "Return the user input in a minibuffer before point as a string. -That is what completion commands operate on." +That used to be what completion commands operate on." + (declare (obsolete minibuffer-contents "24.4")) (buffer-substring (field-beginning) (point))) (defun delete-minibuffer-contents () |