comparison lisp/subr.el @ 67876:d3f449ec33bd

(lazy-completion-table): Correct typo in docstring.
author Luc Teirlinck <teirllm@auburn.edu>
date Wed, 28 Dec 2005 16:36:18 +0000
parents 5a83c9ee8aa6
children 7c797468d04b ec395f552d45
comparison
equal deleted inserted replaced
67875:e1dfc5458653 67876:d3f449ec33bd
2269 ;; or 2269 ;; or
2270 ;; (lexical-let ((x x)) ((y y)) 2270 ;; (lexical-let ((x x)) ((y y))
2271 ;; (lazy-completion-table var (lambda () (fun x y)))) 2271 ;; (lazy-completion-table var (lambda () (fun x y))))
2272 ;; depending on the behavior they want. 2272 ;; depending on the behavior they want.
2273 "Initialize variable VAR as a lazy completion table. 2273 "Initialize variable VAR as a lazy completion table.
2274 If the completion table VAR is used for the first tidme (e.g., by passing VAR 2274 If the completion table VAR is used for the first time (e.g., by passing VAR
2275 as an argument to `try-completion'), the function FUN is called with no 2275 as an argument to `try-completion'), the function FUN is called with no
2276 arguments. FUN must return the completion table that will be stored in VAR. 2276 arguments. FUN must return the completion table that will be stored in VAR.
2277 If completion is requested in the minibuffer, FUN will be called in the buffer 2277 If completion is requested in the minibuffer, FUN will be called in the buffer
2278 from which the minibuffer was entered. The return value of 2278 from which the minibuffer was entered. The return value of
2279 `lazy-completion-table' must be used to initialize the value of VAR." 2279 `lazy-completion-table' must be used to initialize the value of VAR."