]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment corrected.
authorFrancesco Potortì <pot@gnu.org>
Tue, 8 Oct 2002 10:58:42 +0000 (10:58 +0000)
committerFrancesco Potortì <pot@gnu.org>
Tue, 8 Oct 2002 10:58:42 +0000 (10:58 +0000)
lisp/emacs-lisp/easy-mmode.el

index 92189f3ca82738f4b10258511307ec716920028c..4bc2861961f61bed0ef6d90b3ed20287ceec4e5e 100644 (file)
@@ -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)