aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-11 04:42:52 +0000
committerRichard M. Stallman2005-12-11 04:42:52 +0000
commit912ea554bc5232764710188ce4e286c8b473f648 (patch)
treeb0bf8fdc2a7f5750dbc6703f6a18dc3aa643fec7
parentac8fcf0f17ab5d81f3b30db5599337d000ad12d9 (diff)
downloademacs-912ea554bc5232764710188ce4e286c8b473f648.tar.gz
emacs-912ea554bc5232764710188ce4e286c8b473f648.zip
(Common Keywords): State caveats for use of :tag.
-rw-r--r--lispref/customize.texi12
1 files changed, 10 insertions, 2 deletions
diff --git a/lispref/customize.texi b/lispref/customize.texi
index 1bf54f4f210..1170a909118 100644
--- a/lispref/customize.texi
+++ b/lispref/customize.texi
@@ -34,8 +34,16 @@ display one name.
34 34
35@table @code 35@table @code
36@item :tag @var{label} 36@item :tag @var{label}
37Use @var{label}, a string, instead of the item's name, to label the item 37Use @var{label}, a string, instead of the item's name, to label the
38in customization menus and buffers. 38item in customization menus and buffers. @strong{Don't use a tag
39which is substantially different from the item's real name; that would
40cause confusion.} One legitimate case for use of @code{:tag} is to
41specify a dash where normally a hyphen would be converted to a space:
42
43@example
44(defcustom cursor-in-non-selected-windows @dots{}
45 :tag "Cursor In Non-selected Windows"
46@end example
39 47
40@item :group @var{group} 48@item :group @var{group}
41Put this customization item in group @var{group}. When you use 49Put this customization item in group @var{group}. When you use