aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2005-10-17 06:48:00 +0000
committerJuri Linkov2005-10-17 06:48:00 +0000
commit3389865aa2064beb577d4036d4030e46a56cf6ad (patch)
tree2789e34777c308ccbcf1f33e82db7bd1212f9cde
parentf8e336831218af3321462c23c65f8f3a0d260fc9 (diff)
downloademacs-3389865aa2064beb577d4036d4030e46a56cf6ad.tar.gz
emacs-3389865aa2064beb577d4036d4030e46a56cf6ad.zip
(Mode Hooks, Defining Minor Modes):
Replace `...' with `@dots{}' in `@defmac' and `@defspec'.
-rw-r--r--lispref/modes.texi6
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{}
1158This macro executes @var{body} like @code{progn}, but all calls to 1158This 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.
1160They will be run by the first call to @code{run-mode-hooks} after exit 1160They 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
1365implementing a mode in one self-contained definition. 1365implementing 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
1369This macro defines a new minor mode whose name is @var{mode} (a 1369This macro defines a new minor mode whose name is @var{mode} (a
1370symbol). It defines a command named @var{mode} to toggle the minor 1370symbol). 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{}
1496This defines a global minor mode named @var{global-mode} whose meaning 1496This defines a global minor mode named @var{global-mode} whose meaning
1497is to enable the buffer-local minor mode @var{mode} in every buffer. 1497is to enable the buffer-local minor mode @var{mode} in every buffer.
1498To turn on the minor mode in a buffer, it uses the function 1498To turn on the minor mode in a buffer, it uses the function