diff options
| author | Richard M. Stallman | 1994-02-18 23:51:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-02-18 23:51:41 +0000 |
| commit | 2eb9adabed31a8b90efcbc2ce62ae954a8b78a59 (patch) | |
| tree | 7e64729df8b7153aef5811b0a6c6f48405eb15ae | |
| parent | 313558ae3149dd51c79cfa86ce65c138ed65e267 (diff) | |
| download | emacs-2eb9adabed31a8b90efcbc2ce62ae954a8b78a59.tar.gz emacs-2eb9adabed31a8b90efcbc2ce62ae954a8b78a59.zip | |
(lisp-complete-symbol): Doc fix.
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 741b3db5251..3ffc6a09b55 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el | |||
| @@ -230,10 +230,11 @@ before and after, depending on the surrounding characters." | |||
| 230 | (newline-and-indent)) | 230 | (newline-and-indent)) |
| 231 | 231 | ||
| 232 | (defun lisp-complete-symbol () | 232 | (defun lisp-complete-symbol () |
| 233 | "Perform completion on Lisp symbol preceding point. That symbol is | 233 | "Perform completion on Lisp symbol preceding point. |
| 234 | compared against the symbols that exist and any additional characters | 234 | Compare that symbol against the known Lisp symbols. |
| 235 | determined by what is there are inserted. | 235 | |
| 236 | If the symbol starts just after an open-parenthesis, only symbols | 236 | The context determines which symbols are considered. |
| 237 | If the symbol starts just after an open-parenthesis, only symbols | ||
| 237 | with function definitions are considered. Otherwise, all symbols with | 238 | with function definitions are considered. Otherwise, all symbols with |
| 238 | function definitions, values or properties are considered." | 239 | function definitions, values or properties are considered." |
| 239 | (interactive) | 240 | (interactive) |