From: Glenn Morris Date: Wed, 13 Feb 2013 02:20:52 +0000 (-0500) Subject: * doc/lispref/modes.texi (Minor Mode Conventions): Fix typo. X-Git-Tag: emacs-24.3-rc1~66 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b5ca9d53491fc448c05e8c98334d84b282193e22;p=emacs.git * doc/lispref/modes.texi (Minor Mode Conventions): Fix typo. --- 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 + + * modes.texi (Minor Mode Conventions): Fix typo. + 2013-02-12 Glenn Morris * 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.