]> git.eshelyaron.com Git - emacs.git/commitdiff
whitespace.el - fix higlighting test and bump rev
authorRajesh Vaidheeswarran <rv@gnu.org>
Mon, 11 Apr 2005 23:25:46 +0000 (23:25 +0000)
committerRajesh Vaidheeswarran <rv@gnu.org>
Mon, 11 Apr 2005 23:25:46 +0000 (23:25 +0000)
lisp/ChangeLog
lisp/whitespace.el

index e895e58d842a37637d88ac3ed0f67054fb0fda8e..bf3e2292dd77718dfe258008af12f9deedf65b7d 100644 (file)
@@ -1,3 +1,10 @@
+2005-04-11  Rajesh Vaidheeswarran  <rv@gnu.org>
+
+       * whitespace.el (whitespace-version): Bump to 3.5
+
+       (whitespace-buffer-leading, whitespace-buffer-trailing): Invert
+       sense of the test to highlight the whitespace.
+
 2005-04-12  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gud.el (gud-display-line): GUD uses its own
index 1ac518091b8df4e925ec3c5bbca772ae5cd1369a..b052a3e3460b9de82df0c34f7c2639bae33b213b 100644 (file)
@@ -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)