diff options
Diffstat (limited to 'lisp')
| -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 |