]> git.eshelyaron.com Git - emacs.git/commitdiff
* whitespace.el (whitespace-enable-predicate): fix sense of comment.
authorReuben Thomas <rrt@sc3d.org>
Mon, 27 Jan 2014 12:30:17 +0000 (12:30 +0000)
committerReuben Thomas <rrt@sc3d.org>
Mon, 27 Jan 2014 12:30:17 +0000 (12:30 +0000)
  Fixes bug #16564, from change of 2013-03-10.

lisp/ChangeLog
lisp/whitespace.el

index a84cc146c65a0f0dc03e83b3075979ca97e752b1..84d263aa62cfc96999d8f2044cfc780669e9f31c 100644 (file)
@@ -1,3 +1,8 @@
+2014-01-27  Reuben Thomas  <rrt@sc3d.org>
+
+       * whitespace.el (whitespace-enable-predicate): fix sense of comment.
+       Fixes bug #16564, from change of 2013-03-10.
+
 2014-01-27  Glenn Morris  <rgm@gnu.org>
 
        * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
index 7630ffbdb9c3894767a81fec898179a0ebde7c0e..3208c578fe7b09e8e24f13232d412ad6100cc807 100644 (file)
@@ -1084,7 +1084,7 @@ See also `whitespace-style', `whitespace-newline' and
                (not (memq major-mode (cdr whitespace-global-modes)))
              (memq major-mode whitespace-global-modes)))
           (t nil))
-         ;; ...we have a display (we're running a batch job)
+         ;; ...we have a display (not running a batch job)
          (not noninteractive)
          ;; ...the buffer is not internal (name starts with a space)
          (not (eq (aref (buffer-name) 0) ?\ ))