diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-12-11 04:42:52 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-12-11 04:42:52 +0000 |
commit | 912ea554bc5232764710188ce4e286c8b473f648 (patch) | |
tree | b0bf8fdc2a7f5750dbc6703f6a18dc3aa643fec7 /lispref/customize.texi | |
parent | ac8fcf0f17ab5d81f3b30db5599337d000ad12d9 (diff) | |
download | emacs-912ea554bc5232764710188ce4e286c8b473f648.tar.gz |
(Common Keywords): State caveats for use of :tag.
Diffstat (limited to 'lispref/customize.texi')
-rw-r--r-- | lispref/customize.texi | 12 |
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. @table @code @item :tag @var{label} -Use @var{label}, a string, instead of the item's name, to label the item -in customization menus and buffers. +Use @var{label}, a string, instead of the item's name, to label the +item in customization menus and buffers. @strong{Don't use a tag +which is substantially different from the item's real name; that would +cause confusion.} One legitimate case for use of @code{:tag} is to +specify a dash where normally a hyphen would be converted to a space: + +@example +(defcustom cursor-in-non-selected-windows @dots{} + :tag "Cursor In Non-selected Windows" +@end example @item :group @var{group} Put this customization item in group @var{group}. When you use |