diff options
| author | Richard M. Stallman | 2005-12-11 04:42:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-12-11 04:42:52 +0000 |
| commit | 912ea554bc5232764710188ce4e286c8b473f648 (patch) | |
| tree | b0bf8fdc2a7f5750dbc6703f6a18dc3aa643fec7 | |
| parent | ac8fcf0f17ab5d81f3b30db5599337d000ad12d9 (diff) | |
| download | emacs-912ea554bc5232764710188ce4e286c8b473f648.tar.gz emacs-912ea554bc5232764710188ce4e286c8b473f648.zip | |
(Common Keywords): State caveats for use of :tag.
| -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 |