summaryrefslogtreecommitdiff
path: root/lisp/whitespace.el
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2014-01-27 12:30:17 +0000
committerReuben Thomas <rrt@sc3d.org>2014-01-27 12:30:17 +0000
commitd269bb996424d8c5b251f0a03731c09839a43d33 (patch)
treeadc419fdef5e4e34926e549f28122e9124cc324a /lisp/whitespace.el
parent56420a15623d8fc6d476730c4d297fe00a617afd (diff)
downloademacs-d269bb996424d8c5b251f0a03731c09839a43d33.tar.gz
* whitespace.el (whitespace-enable-predicate): fix sense of comment.
Fixes bug #16564, from change of 2013-03-10.
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r--lisp/whitespace.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index 7630ffbdb9c..3208c578fe7 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -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) ?\ ))