aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2013-02-12 21:20:52 -0500
committerGlenn Morris2013-02-12 21:20:52 -0500
commitb5ca9d53491fc448c05e8c98334d84b282193e22 (patch)
tree4ee49a4df8520f5a5aa84439d193c4ae6cf20283 /doc
parentf53f992ad53e62a8452884f9322250894ddbb505 (diff)
downloademacs-b5ca9d53491fc448c05e8c98334d84b282193e22.tar.gz
emacs-b5ca9d53491fc448c05e8c98334d84b282193e22.zip
* 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 @@
12013-02-13 Glenn Morris <rgm@gnu.org>
2
3 * modes.texi (Minor Mode Conventions): Fix typo.
4
12013-02-12 Glenn Morris <rgm@gnu.org> 52013-02-12 Glenn Morris <rgm@gnu.org>
2 6
3 * keymaps.texi (Scanning Keymaps): Remove obsolete sentence about 7 * 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}.
1361@cindex mode variable 1361@cindex mode variable
1362Define a variable whose name ends in @samp{-mode}. We call this the 1362Define a variable whose name ends in @samp{-mode}. We call this the
1363@dfn{mode variable}. The minor mode command should set this variable. 1363@dfn{mode variable}. The minor mode command should set this variable.
1364The value will be @code{nil} is the mode is disabled, and non-@code{nil} 1364The value will be @code{nil} if the mode is disabled, and non-@code{nil}
1365if the mode is enabled. The variable should be buffer-local if the 1365if the mode is enabled. The variable should be buffer-local if the
1366minor mode is buffer-local. 1366minor mode is buffer-local.
1367 1367