diff options
| author | Glenn Morris | 2013-02-12 21:20:52 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-02-12 21:20:52 -0500 |
| commit | b5ca9d53491fc448c05e8c98334d84b282193e22 (patch) | |
| tree | 4ee49a4df8520f5a5aa84439d193c4ae6cf20283 /doc | |
| parent | f53f992ad53e62a8452884f9322250894ddbb505 (diff) | |
| download | emacs-b5ca9d53491fc448c05e8c98334d84b282193e22.tar.gz emacs-b5ca9d53491fc448c05e8c98334d84b282193e22.zip | |
* doc/lispref/modes.texi (Minor Mode Conventions): Fix typo.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/modes.texi | 2 |
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 @@ | |||
| 1 | 2013-02-13 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * modes.texi (Minor Mode Conventions): Fix typo. | ||
| 4 | |||
| 1 | 2013-02-12 Glenn Morris <rgm@gnu.org> | 5 | 2013-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 |
| 1362 | Define a variable whose name ends in @samp{-mode}. We call this the | 1362 | Define 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. |
| 1364 | The value will be @code{nil} is the mode is disabled, and non-@code{nil} | 1364 | The value will be @code{nil} if the mode is disabled, and non-@code{nil} |
| 1365 | if the mode is enabled. The variable should be buffer-local if the | 1365 | if the mode is enabled. The variable should be buffer-local if the |
| 1366 | minor mode is buffer-local. | 1366 | minor mode is buffer-local. |
| 1367 | 1367 | ||