# HG changeset patch # User Stefan Monnier # Date 1135612609 0 # Node ID b240a2550f918d7e1714b7d2156f0126ba55f278 # Parent d195eef388b8ff13fccd97d707adc518e15e0f13 *** empty log message *** diff -r d195eef388b8 -r b240a2550f91 etc/NEWS --- a/etc/NEWS Mon Dec 26 15:54:21 2005 +0000 +++ b/etc/NEWS Mon Dec 26 15:56:49 2005 +0000 @@ -4214,13 +4214,13 @@ *** The new macro `lazy-completion-table' initializes a variable as a lazy completion table. - (lazy-completion-table VAR FUN &rest ARGS) + (lazy-completion-table VAR FUN) If the completion table VAR is used for the first time (e.g., by passing VAR -as an argument to `try-completion'), the function FUN is called with arguments -ARGS. FUN must return the completion table that will be stored in VAR. If -completion is requested in the minibuffer, FUN will be called in the buffer -from which the minibuffer was entered. The return value of +as an argument to `try-completion'), the function FUN is called with no +arguments. FUN must return the completion table that will be stored in VAR. +If completion is requested in the minibuffer, FUN will be called in the buffer +from which the minibuffer was entered. The return value of `lazy-completion-table' must be used to initialize the value of VAR. +++