From: Francesco Potortì Date: Tue, 8 Oct 2002 10:58:42 +0000 (+0000) Subject: Comment corrected. X-Git-Tag: emacs-pretest-21.2.91~2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=152d0d8932498c18e4ff863a3c781d8ba9ac1d38;p=emacs.git Comment corrected. --- 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)