summaryrefslogtreecommitdiff
path: root/doc/lispref/customize.texi
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-06-11 14:48:47 +0800
committerChong Yidong <cyd@gnu.org>2012-06-11 14:48:47 +0800
commit84f4a5318039a0d2939dc4e47e1a173cdcf00223 (patch)
tree93b8f1b9a56cb1e32730381a805d1ad496001c82 /doc/lispref/customize.texi
parentb4543a2894f8d74cb01e4b353f8d6ebb5ae7bf3b (diff)
downloademacs-84f4a5318039a0d2939dc4e47e1a173cdcf00223.tar.gz
More minor manual copyedits to fix 7x9 manual underfull/overfull hboxes.
* doc/emacs/emacs.texi: Remove urlcolor setting. * doc/lispref/elisp.texi, vol1.texi, vol2.texi: Remove urlcolor setting. * doc/lispref/vol2.texi: Include package.texi.
Diffstat (limited to 'doc/lispref/customize.texi')
-rw-r--r--doc/lispref/customize.texi9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/lispref/customize.texi b/doc/lispref/customize.texi
index be224987d29..0382e958c5d 100644
--- a/doc/lispref/customize.texi
+++ b/doc/lispref/customize.texi
@@ -711,7 +711,8 @@ This is done by using a customization type specification instead of a
symbol for the key.
@example
-:options '("foo" ((function-item some-function) integer)
+:options '("foo"
+ ((function-item some-function) integer)
"baz")
@end example
@@ -719,7 +720,8 @@ Many alists use lists with two elements, instead of cons cells. For
example,
@example
-(defcustom list-alist '(("foo" 1) ("bar" 2) ("baz" 3))
+(defcustom list-alist
+ '(("foo" 1) ("bar" 2) ("baz" 3))
"Each element is a list of the form (KEY VALUE).")
@end example
@@ -727,7 +729,8 @@ example,
instead of
@example
-(defcustom cons-alist '(("foo" . 1) ("bar" . 2) ("baz" . 3))
+(defcustom cons-alist
+ '(("foo" . 1) ("bar" . 2) ("baz" . 3))
"Each element is a cons-cell (KEY . VALUE).")
@end example