diff options
| -rw-r--r-- | lispref/modes.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/modes.texi b/lispref/modes.texi index 27aea507cc8..00b58f0a9ff 100644 --- a/lispref/modes.texi +++ b/lispref/modes.texi | |||
| @@ -1154,7 +1154,7 @@ Instead, it arranges for the next call to @code{run-mode-hooks} to run | |||
| 1154 | @var{hookvars}. | 1154 | @var{hookvars}. |
| 1155 | @end defun | 1155 | @end defun |
| 1156 | 1156 | ||
| 1157 | @defmac delay-mode-hooks body... | 1157 | @defmac delay-mode-hooks body@dots{} |
| 1158 | This macro executes @var{body} like @code{progn}, but all calls to | 1158 | This macro executes @var{body} like @code{progn}, but all calls to |
| 1159 | @code{run-mode-hooks} inside @var{body} delay running their hooks. | 1159 | @code{run-mode-hooks} inside @var{body} delay running their hooks. |
| 1160 | They will be run by the first call to @code{run-mode-hooks} after exit | 1160 | They will be run by the first call to @code{run-mode-hooks} after exit |
| @@ -1364,7 +1364,7 @@ characters are reserved for major modes.) | |||
| 1364 | The macro @code{define-minor-mode} offers a convenient way of | 1364 | The macro @code{define-minor-mode} offers a convenient way of |
| 1365 | implementing a mode in one self-contained definition. | 1365 | implementing a mode in one self-contained definition. |
| 1366 | 1366 | ||
| 1367 | @defmac define-minor-mode mode doc [init-value [lighter [keymap]]] keyword-args... body... | 1367 | @defmac define-minor-mode mode doc [init-value [lighter [keymap]]] keyword-args@dots{} body@dots{} |
| 1368 | @tindex define-minor-mode | 1368 | @tindex define-minor-mode |
| 1369 | This macro defines a new minor mode whose name is @var{mode} (a | 1369 | This macro defines a new minor mode whose name is @var{mode} (a |
| 1370 | symbol). It defines a command named @var{mode} to toggle the minor | 1370 | symbol). It defines a command named @var{mode} to toggle the minor |
| @@ -1492,7 +1492,7 @@ See the command \\[hungry-electric-delete]." | |||
| 1492 | :group 'hunger) | 1492 | :group 'hunger) |
| 1493 | @end smallexample | 1493 | @end smallexample |
| 1494 | 1494 | ||
| 1495 | @defmac define-global-minor-mode global-mode mode turn-on keyword-args... | 1495 | @defmac define-global-minor-mode global-mode mode turn-on keyword-args@dots{} |
| 1496 | This defines a global minor mode named @var{global-mode} whose meaning | 1496 | This defines a global minor mode named @var{global-mode} whose meaning |
| 1497 | is to enable the buffer-local minor mode @var{mode} in every buffer. | 1497 | is to enable the buffer-local minor mode @var{mode} in every buffer. |
| 1498 | To turn on the minor mode in a buffer, it uses the function | 1498 | To turn on the minor mode in a buffer, it uses the function |