From: Stefan Monnier Date: Mon, 26 Dec 2005 15:56:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~5066 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=29f93de38a6fc7d3735b8fdd3de51df34db49ba7;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 45ef93a9ae4..5d49a5d91b6 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -4214,13 +4214,13 @@ entered. `dynamic-completion-table' then computes the completion. *** 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. +++