summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-02-12 21:20:52 -0500
committerGlenn Morris <rgm@gnu.org>2013-02-12 21:20:52 -0500
commitb5ca9d53491fc448c05e8c98334d84b282193e22 (patch)
tree4ee49a4df8520f5a5aa84439d193c4ae6cf20283 /doc
parentf53f992ad53e62a8452884f9322250894ddbb505 (diff)
downloademacs-b5ca9d53491fc448c05e8c98334d84b282193e22.tar.gz
* doc/lispref/modes.texi (Minor Mode Conventions): Fix typo.
Diffstat (limited to 'doc')
-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 609ac84a892..0a7a131c6a9 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2013-02-13 Glenn Morris <rgm@gnu.org>
+
+ * modes.texi (Minor Mode Conventions): Fix typo.
+
2013-02-12 Glenn Morris <rgm@gnu.org>
* keymaps.texi (Scanning Keymaps): Remove obsolete sentence about
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index 29aba877ba2..425bb58b651 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -1361,7 +1361,7 @@ follow them is to use the macro @code{define-minor-mode}.
@cindex mode variable
Define a variable whose name ends in @samp{-mode}. We call this the
@dfn{mode variable}. The minor mode command should set this variable.
-The value will be @code{nil} is the mode is disabled, and non-@code{nil}
+The value will be @code{nil} if the mode is disabled, and non-@code{nil}
if the mode is enabled. The variable should be buffer-local if the
minor mode is buffer-local.