diff options
| author | Richard M. Stallman | 2006-01-26 17:54:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-01-26 17:54:27 +0000 |
| commit | 8299f39695055ea59e604e7ed849dd2a65a9429c (patch) | |
| tree | 2172cdb5e3b253663a2c8007ed3be57669a673b2 | |
| parent | 9b452786270b22e210659df5a4753561a7cd0be2 (diff) | |
| download | emacs-8299f39695055ea59e604e7ed849dd2a65a9429c.tar.gz emacs-8299f39695055ea59e604e7ed849dd2a65a9429c.zip | |
(lazy-completion-table): Doc fix.
| -rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index ac917a10550..d335a1d4e0f 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2274,7 +2274,9 @@ as an argument to `try-completion'), the function FUN is called with no | |||
| 2274 | arguments. FUN must return the completion table that will be stored in VAR. | 2274 | arguments. FUN must return the completion table that will be stored in VAR. |
| 2275 | If completion is requested in the minibuffer, FUN will be called in the buffer | 2275 | If completion is requested in the minibuffer, FUN will be called in the buffer |
| 2276 | from which the minibuffer was entered. The return value of | 2276 | from which the minibuffer was entered. The return value of |
| 2277 | `lazy-completion-table' must be used to initialize the value of VAR." | 2277 | `lazy-completion-table' must be used to initialize the value of VAR. |
| 2278 | |||
| 2279 | You should give VAR a non-nil `risky-local-variable' property." | ||
| 2278 | (declare (debug (symbol lambda-expr))) | 2280 | (declare (debug (symbol lambda-expr))) |
| 2279 | (let ((str (make-symbol "string"))) | 2281 | (let ((str (make-symbol "string"))) |
| 2280 | `(dynamic-completion-table | 2282 | `(dynamic-completion-table |