diff options
| -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. | |||
| 34 | 34 | ||
| 35 | @table @code | 35 | @table @code |
| 36 | @item :tag @var{label} | 36 | @item :tag @var{label} |
| 37 | Use @var{label}, a string, instead of the item's name, to label the item | 37 | Use @var{label}, a string, instead of the item's name, to label the |
| 38 | in customization menus and buffers. | 38 | item in customization menus and buffers. @strong{Don't use a tag |
| 39 | which is substantially different from the item's real name; that would | ||
| 40 | cause confusion.} One legitimate case for use of @code{:tag} is to | ||
| 41 | specify 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} |
| 41 | Put this customization item in group @var{group}. When you use | 49 | Put this customization item in group @var{group}. When you use |