]> git.eshelyaron.com Git - emacs.git/commitdiff
Add to elisp-completion-at-point's docstring
authorNoam Postavsky <npostavs@gmail.com>
Sat, 25 Jun 2016 20:23:04 +0000 (16:23 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Mon, 27 Jun 2016 04:32:51 +0000 (00:32 -0400)
* lisp/progmodes/elisp-mode.el (elisp-completion-at-point): Document
position dependent behavior (Bug #19854).

lisp/progmodes/elisp-mode.el

index 7ad88712a4d13a6e268bcc126453d349cbe16d25..5111f8870910b3071489efba7e10807d937ed7af 100644 (file)
@@ -455,7 +455,13 @@ It can be quoted, or be inside a quoted form."
      ((facep sym) (find-definition-noselect sym 'defface)))))
 
 (defun elisp-completion-at-point ()
-  "Function used for `completion-at-point-functions' in `emacs-lisp-mode'."
+  "Function used for `completion-at-point-functions' in `emacs-lisp-mode'.
+If the context at point allows only a certain category of
+symbols (e.g. functions, or variables) then the returned
+completions are restricted to that category.  In contexts where
+any symbol is possible (following a quote, for example),
+functions are annotated with \"<f>\" via the
+`:annotation-function' property."
   (with-syntax-table emacs-lisp-mode-syntax-table
     (let* ((pos (point))
           (beg (condition-case nil