diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-05-21 22:24:04 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-05-21 22:24:04 +0000 |
commit | a217fa213f04a51b56402370220d5f6e2e0e097a (patch) | |
tree | b6ee759dcd9b998e34d8865317677202e1d40db5 /lispref/modes.texi | |
parent | 2a4d7cb355c566dbefbe25335c64df34970d49dd (diff) | |
download | emacs-a217fa213f04a51b56402370220d5f6e2e0e097a.tar.gz |
(Derived Modes): Clarify :group keyword.
Diffstat (limited to 'lispref/modes.texi')
-rw-r--r-- | lispref/modes.texi | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lispref/modes.texi b/lispref/modes.texi index 1b30a23e128..f8230512d26 100644 --- a/lispref/modes.texi +++ b/lispref/modes.texi @@ -1032,9 +1032,6 @@ The @var{keyword-args} are pairs of keywords and values. The values are evaluated. The following keywords are currently supported: @table @code -@item :group -If this is specified, it is the customization group for this mode. - @item :syntax-table You can use this to explicitly specify a syntax table for the new mode. If you specify a @code{nil} value, the new mode uses the same @@ -1049,6 +1046,13 @@ mode. If you specify a @code{nil} value, the new mode uses the same abbrev table as @var{parent}, or @code{fundamental-mode-abbrev-table} if @var{parent} is @code{nil}. (Again, a @code{nil} value is @emph{not} equivalent to not specifying this keyword.) + +@item :group +If this is specified, the value should be the customization group for +this mode. (Not all major modes have one.) Only the (still +experimental and unadvertised) command @code{customize-mode} currently +uses this. @code{define-derived-mode} does @emph{not} automatically +define the specified customization group. @end table Here is a hypothetical example: |