aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2006-12-30 21:34:14 +0000
committerRichard M. Stallman2006-12-30 21:34:14 +0000
commit9f729dab765f91d07607af1c56e62d9132afe2d5 (patch)
tree2d617d002f7f49ac6a89d0dd61870a33bbd3ed7a /lisp
parent601543bee49dda7e8c67481539c06e1e3441701b (diff)
downloademacs-9f729dab765f91d07607af1c56e62d9132afe2d5.tar.gz
emacs-9f729dab765f91d07607af1c56e62d9132afe2d5.zip
(define-global-minor-mode): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/easy-mmode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
index de8f0a91af4..213854edb54 100644
--- a/lisp/emacs-lisp/easy-mmode.el
+++ b/lisp/emacs-lisp/easy-mmode.el
@@ -274,7 +274,7 @@ With zero or negative ARG turn mode off.
274(defalias 'easy-mmode-define-global-mode 'define-global-minor-mode) 274(defalias 'easy-mmode-define-global-mode 'define-global-minor-mode)
275;;;###autoload 275;;;###autoload
276(defmacro define-global-minor-mode (global-mode mode turn-on &rest keys) 276(defmacro define-global-minor-mode (global-mode mode turn-on &rest keys)
277 "Make GLOBAL-MODE out of the buffer-local minor MODE. 277 "Make a global mode GLOBAL-MODE corresponding to buffer-local minor MODE.
278TURN-ON is a function that will be called with no args in every buffer 278TURN-ON is a function that will be called with no args in every buffer
279 and that should try to turn MODE on if applicable for that buffer. 279 and that should try to turn MODE on if applicable for that buffer.
280KEYS is a list of CL-style keyword arguments. As the minor mode 280KEYS is a list of CL-style keyword arguments. As the minor mode