summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-12-26 15:57:37 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-12-26 15:57:37 +0000
commit42dd6ad2eb31d8151932ac56560bde3223d75cc5 (patch)
treefb8b0aaf3c84a3c128e35d55c0746383195c11fc /lispref
parent76d9f0ed59a5bb5df4b9ae106ef1ca76659cfd62 (diff)
downloademacs-42dd6ad2eb31d8151932ac56560bde3223d75cc5.tar.gz
(lazy-completion-table): Remove argument `args'.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/minibuf.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/minibuf.texi b/lispref/minibuf.texi
index 3517cb8092b..25e06d7a45b 100644
--- a/lispref/minibuf.texi
+++ b/lispref/minibuf.texi
@@ -768,13 +768,13 @@ in this list, with @code{case-fold-search} (@pxref{Searching and Case})
bound to the value of @code{completion-ignore-case}.
@end defvar
-@defmac lazy-completion-table var fun &rest args
+@defmac lazy-completion-table var fun
This macro provides a way to initialize the variable @var{var} as a
collection for completion in a lazy way, not computing its actual
contents until they are first needed. You use this macro to produce a
value that you store in @var{var}. The actual computation of the
proper value is done the first time you do completion using @var{var}.
-It is done by calling @var{fun} with the arguments @var{args}. The
+It is done by calling @var{fun} with no arguments. The
value @var{fun} returns becomes the permanent value of @var{var}.
Here are two examples of use: