+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
;;; 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.
(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)
(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)