aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPer Abrahamsen2002-08-05 15:15:18 +0000
committerPer Abrahamsen2002-08-05 15:15:18 +0000
commit241f79af81f44ceccabbf16d3d6c6b4c53963bc4 (patch)
treeb91207c0596449c5349e586ca88c6b7fa18ade60
parent5beaf83194cb9e3a7c7eeefb5d7f719e2069f08a (diff)
downloademacs-241f79af81f44ceccabbf16d3d6c6b4c53963bc4.tar.gz
emacs-241f79af81f44ceccabbf16d3d6c6b4c53963bc4.zip
2002-08-05 Per Abrahamsen <abraham@dina.kvl.dk>
* customize.texi (Splicing into Lists): Fixed example. Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/customize.texi10
2 files changed, 10 insertions, 5 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index eda8e14b490..12b4b1a7132 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12002-08-05 Per Abrahamsen <abraham@dina.kvl.dk>
2
3 * customize.texi (Splicing into Lists): Fixed example.
4 Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>
5
12002-06-17 Juanma Barranquero <lektu@terra.es> 62002-06-17 Juanma Barranquero <lektu@terra.es>
2 7
3 * frames.texi (Display Feature Testing): Fix typo. 8 * frames.texi (Display Feature Testing): Fix typo.
diff --git a/lispref/customize.texi b/lispref/customize.texi
index c755847152a..61891fba651 100644
--- a/lispref/customize.texi
+++ b/lispref/customize.texi
@@ -1,6 +1,6 @@
1@c -*-texinfo-*- 1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual. 2@c This is part of the GNU Emacs Lisp Reference Manual.
3@c Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. 3@c Copyright (C) 1997, 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions. 4@c See the file elisp.texi for copying conditions.
5@setfilename ../info/customize 5@setfilename ../info/customize
6@node Customization, Loading, Macros, Top 6@node Customization, Loading, Macros, Top
@@ -821,17 +821,17 @@ matches a list with three elements, those become three elements of the
821overall sequence. This is analogous to using @samp{,@@} in the backquote 821overall sequence. This is analogous to using @samp{,@@} in the backquote
822construct. 822construct.
823 823
824 For example, to specify a list whose first element must be @code{t} 824 For example, to specify a list whose first element must be @code{baz}
825and whose remaining arguments should be zero or more of @code{foo} and 825and whose remaining arguments should be zero or more of @code{foo} and
826@code{bar}, use this customization type: 826@code{bar}, use this customization type:
827 827
828@example 828@example
829(list (const t) (set :inline t foo bar)) 829(list (const baz) (set :inline t (const foo) (const bar)))
830@end example 830@end example
831 831
832@noindent 832@noindent
833This matches values such as @code{(t)}, @code{(t foo)}, @code{(t bar)} 833This matches values such as @code{(baz)}, @code{(baz foo)}, @code{(baz bar)}
834and @code{(t foo bar)}. 834and @code{(baz foo bar)}.
835 835
836 When the element-type is a @code{choice}, you use @code{:inline} not 836 When the element-type is a @code{choice}, you use @code{:inline} not
837in the @code{choice} itself, but in (some of) the alternatives of the 837in the @code{choice} itself, but in (some of) the alternatives of the