summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancesco Potortì <pot@gnu.org>2002-10-08 10:58:42 +0000
committerFrancesco Potortì <pot@gnu.org>2002-10-08 10:58:42 +0000
commit152d0d8932498c18e4ff863a3c781d8ba9ac1d38 (patch)
tree016288ae97854fffcb19aab966c4e0ce0115801d
parent58221e52f478a134b694cfd1824bad1284ba50f8 (diff)
downloademacs-152d0d8932498c18e4ff863a3c781d8ba9ac1d38.tar.gz
Comment corrected.
-rw-r--r--lisp/emacs-lisp/easy-mmode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
index 92189f3ca82..4bc2861961f 100644
--- a/lisp/emacs-lisp/easy-mmode.el
+++ b/lisp/emacs-lisp/easy-mmode.el
@@ -107,7 +107,7 @@ BODY contains code that will be executed each time the mode is (dis)activated.
(let* ((mode-name (symbol-name mode))
(pretty-name (easy-mmode-pretty-mode-name mode lighter))
(globalp nil)
- (togglep t) ;why would you ever want to toggle?
+ (togglep t) ;why would you ever prevent toggling?
(group nil)
(extra-args nil)
(keymap-sym (if (and keymap (symbolp keymap)) keymap
@@ -215,7 +215,7 @@ With zero or negative ARG turn mode off.
,(if keymap keymap-sym
`(if (boundp ',keymap-sym)
(symbol-value ',keymap-sym))))
-
+
;; If the mode is global, call the function according to the default.
,(if globalp
`(if (and load-file-name ,mode)