]> git.eshelyaron.com Git - emacs.git/commitdiff
(Basic Completion): Update lazy-completion-table examples for removal
authorLuc Teirlinck <teirllm@auburn.edu>
Wed, 28 Dec 2005 17:18:38 +0000 (17:18 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Wed, 28 Dec 2005 17:18:38 +0000 (17:18 +0000)
of ARGS argument.

lispref/minibuf.texi

index 25e06d7a45bf24a78171626291e88f18cdaed000..6f98785f69ffde0b31830f18832d2bf6ec165fc5 100644 (file)
@@ -777,13 +777,10 @@ proper value is done the first time you do completion using @var{var}.
 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:
+Here is an example of use:
 
 @smallexample
-(defvar foo (lazy-completion-table foo make-my-alist 'global))
-
-(make-local-variable 'bar)
-(setq bar (lazy-completion-table foo make-my-alist 'local)
+(defvar foo (lazy-completion-table foo make-my-alist))
 @end smallexample
 @end defmac
 
@@ -954,7 +951,7 @@ uses this to highlight text in the completion list for better visual
 feedback.  This is not needed in the minibuffer; for minibuffer
 completion, you can pass @code{nil}.
 
-This function is called by @code{minibuffer-completion-help}.  The 
+This function is called by @code{minibuffer-completion-help}.  The
 most common way to use it is together with
 @code{with-output-to-temp-buffer}, like this: