summaryrefslogtreecommitdiff
path: root/lisp/whitespace.el
diff options
context:
space:
mode:
authorRajesh Vaidheeswarran <rv@gnu.org>2005-04-11 23:25:46 +0000
committerRajesh Vaidheeswarran <rv@gnu.org>2005-04-11 23:25:46 +0000
commit7a15a27156987aee8993c629f5ebc67d26760f0b (patch)
treeb6e8ae53e145e44acc01488002f0502e0fd90669 /lisp/whitespace.el
parent9a89f5b0978251238e9eb6a77acd66423b18f354 (diff)
downloademacs-7a15a27156987aee8993c629f5ebc67d26760f0b.tar.gz
whitespace.el - fix higlighting test and bump rev
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r--lisp/whitespace.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index 1ac518091b8..b052a3e3460 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -86,7 +86,7 @@
;;; Code:
-(defvar whitespace-version "3.4" "Version of the whitespace library.")
+(defvar whitespace-version "3.5" "Version of the whitespace library.")
(defvar whitespace-all-buffer-files nil
"An associated list of buffers and files checked for whitespace cleanliness.
@@ -597,7 +597,7 @@ whitespace problems."
(setq pmin (point))
(end-of-line)
(setq pmax (point))
- (if (equal pmin pmax)
+ (if (not (equal pmin pmax))
(progn
(whitespace-highlight-the-space pmin pmax)
t)
@@ -635,7 +635,7 @@ whitespace problems."
(setq pmin (point))
(end-of-line)
(setq pmax (point))
- (if (equal pmin pmax)
+ (if (not (equal pmin pmax))
(progn
(whitespace-highlight-the-space pmin pmax)
t)