aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLute Kamstra2005-04-05 15:22:50 +0000
committerLute Kamstra2005-04-05 15:22:50 +0000
commitbfa546681cdf5489d46c20a6983e63d9674d04e7 (patch)
tree640e676ad98961f1f22150b38bc43a5e514f871b
parent79f9f704ea99f174e3fd26f7188f79f0ba453151 (diff)
downloademacs-bfa546681cdf5489d46c20a6983e63d9674d04e7.tar.gz
emacs-bfa546681cdf5489d46c20a6983e63d9674d04e7.zip
(Defining Minor Modes): Document :group keyword argument and its
default value.
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/modes.texi6
2 files changed, 11 insertions, 0 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 0f778a1591c..1f5c324bdd1 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12005-04-05 Lute Kamstra <lute@gnu.org>
2
3 * modes.texi (Defining Minor Modes): Document :group keyword
4 argument and its default value.
5
12005-04-03 Lute Kamstra <lute@gnu.org> 62005-04-03 Lute Kamstra <lute@gnu.org>
2 7
3 * hooks.texi (Standard Hooks): Add some hooks. Add cross 8 * hooks.texi (Standard Hooks): Add some hooks. Add cross
diff --git a/lispref/modes.texi b/lispref/modes.texi
index f2cfcd2eb8c..ecbe39dbb31 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -1127,6 +1127,12 @@ used. The @var{keyword-args} consist of keywords followed by
1127corresponding values. A few keywords have special meanings: 1127corresponding values. A few keywords have special meanings:
1128 1128
1129@table @code 1129@table @code
1130@item :group @var{group}
1131Custom group name to use in all generated @code{defcustom} forms.
1132Defaults to @var{mode} without the possible trailing @samp{-mode}. Be
1133aware that this default may not be a valid customization group defined
1134with @code{defgroup}. Please make sure it is.
1135
1130@item :global @var{global} 1136@item :global @var{global}
1131If non-@code{nil} specifies that the minor mode should be global. 1137If non-@code{nil} specifies that the minor mode should be global.
1132By default, minor modes are buffer-local. 1138By default, minor modes are buffer-local.