diff options
| author | Per Abrahamsen | 2002-08-05 15:15:18 +0000 |
|---|---|---|
| committer | Per Abrahamsen | 2002-08-05 15:15:18 +0000 |
| commit | 241f79af81f44ceccabbf16d3d6c6b4c53963bc4 (patch) | |
| tree | b91207c0596449c5349e586ca88c6b7fa18ade60 | |
| parent | 5beaf83194cb9e3a7c7eeefb5d7f719e2069f08a (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/customize.texi | 10 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-06-17 Juanma Barranquero <lektu@terra.es> | 6 | 2002-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 | |||
| 821 | overall sequence. This is analogous to using @samp{,@@} in the backquote | 821 | overall sequence. This is analogous to using @samp{,@@} in the backquote |
| 822 | construct. | 822 | construct. |
| 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} |
| 825 | and whose remaining arguments should be zero or more of @code{foo} and | 825 | and 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 |
| 833 | This matches values such as @code{(t)}, @code{(t foo)}, @code{(t bar)} | 833 | This matches values such as @code{(baz)}, @code{(baz foo)}, @code{(baz bar)} |
| 834 | and @code{(t foo bar)}. | 834 | and @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 |
| 837 | in the @code{choice} itself, but in (some of) the alternatives of the | 837 | in the @code{choice} itself, but in (some of) the alternatives of the |