aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2010-06-20 12:30:27 -0400
committerChong Yidong2010-06-20 12:30:27 -0400
commit0fc76035edd207f6c87b4802bce9fa16d9c857d2 (patch)
tree8634cfb270714e387861aa80470f28799ee4683b
parent05c123e62c476cbb856417823af0ba7bb59fa0c7 (diff)
downloademacs-0fc76035edd207f6c87b4802bce9fa16d9c857d2.tar.gz
emacs-0fc76035edd207f6c87b4802bce9fa16d9c857d2.zip
* modes.texi (Minor Mode Conventions): Fix typo (Bug#6477).
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/modes.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 7e4480fd35b..4a28acbb92c 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12010-06-20 Chong Yidong <cyd@stupidchicken.com>
2
3 * modes.texi (Minor Mode Conventions): Fix typo (Bug#6477).
4
12010-06-19 Chong Yidong <cyd@stupidchicken.com> 52010-06-19 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * errors.texi (Standard Errors): Remove unnecessary markup 7 * errors.texi (Standard Errors): Remove unnecessary markup
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index e5eb90863af..858226ecdfc 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -1342,7 +1342,7 @@ or like this, using @code{add-to-list} (@pxref{List Variables}):
1342 Global minor modes distributed with Emacs should if possible support 1342 Global minor modes distributed with Emacs should if possible support
1343enabling and disabling via Custom (@pxref{Customization}). To do this, 1343enabling and disabling via Custom (@pxref{Customization}). To do this,
1344the first step is to define the mode variable with @code{defcustom}, and 1344the first step is to define the mode variable with @code{defcustom}, and
1345specify @code{:type boolean}. 1345specify @code{:type 'boolean}.
1346 1346
1347 If just setting the variable is not sufficient to enable the mode, you 1347 If just setting the variable is not sufficient to enable the mode, you
1348should also specify a @code{:set} method which enables the mode by 1348should also specify a @code{:set} method which enables the mode by