]> git.eshelyaron.com Git - emacs.git/commitdiff
2002-08-05 Per Abrahamsen <abraham@dina.kvl.dk>
authorPer Abrahamsen <abraham@dina.kvl.dk>
Mon, 5 Aug 2002 15:15:18 +0000 (15:15 +0000)
committerPer Abrahamsen <abraham@dina.kvl.dk>
Mon, 5 Aug 2002 15:15:18 +0000 (15:15 +0000)
* customize.texi (Splicing into Lists): Fixed example.
Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>

lispref/ChangeLog
lispref/customize.texi

index eda8e14b490f5e2c928510b144050ae15b2d9c96..12b4b1a713202b11f8ad80da2069eaa6298c563e 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-05  Per Abrahamsen  <abraham@dina.kvl.dk>
+
+       * customize.texi (Splicing into Lists): Fixed example.
+       Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>
+
 2002-06-17  Juanma Barranquero  <lektu@terra.es>
 
        * frames.texi (Display Feature Testing): Fix typo.
index c755847152a345a4ea7b0fb6a804b27c333c1857..61891fba65186aa39f6be69ab1200cc4fbbdd2ab 100644 (file)
@@ -1,6 +1,6 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. 
+@c Copyright (C) 1997, 1998, 1999, 2000, 2002 Free Software Foundation, Inc. 
 @c See the file elisp.texi for copying conditions.
 @setfilename ../info/customize
 @node Customization, Loading, Macros, Top
@@ -821,17 +821,17 @@ matches a list with three elements, those become three elements of the
 overall sequence.  This is analogous to using @samp{,@@} in the backquote
 construct.
 
-  For example, to specify a list whose first element must be @code{t}
+  For example, to specify a list whose first element must be @code{baz}
 and whose remaining arguments should be zero or more of @code{foo} and
 @code{bar}, use this customization type:
 
 @example
-(list (const t) (set :inline t foo bar))
+(list (const baz) (set :inline t (const foo) (const bar)))
 @end example
 
 @noindent
-This matches values such as @code{(t)}, @code{(t foo)}, @code{(t bar)}
-and @code{(t foo bar)}.
+This matches values such as @code{(baz)}, @code{(baz foo)}, @code{(baz bar)}
+and @code{(baz foo bar)}.
 
   When the element-type is a @code{choice}, you use @code{:inline} not
 in the @code{choice} itself, but in (some of) the alternatives of the