emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/whitespace.el


From: Rajesh Vaidheeswarran
Subject: [Emacs-diffs] Changes to emacs/lisp/whitespace.el
Date: Mon, 11 Apr 2005 19:25:46 -0400

Index: emacs/lisp/whitespace.el
diff -c emacs/lisp/whitespace.el:1.33 emacs/lisp/whitespace.el:1.34
*** emacs/lisp/whitespace.el:1.33       Mon Apr 11 18:38:56 2005
--- emacs/lisp/whitespace.el    Mon Apr 11 23:25:46 2005
***************
*** 86,92 ****
  
  ;;; Code:
  
! (defvar whitespace-version "3.4" "Version of the whitespace library.")
  
  (defvar whitespace-all-buffer-files nil
    "An associated list of buffers and files checked for whitespace cleanliness.
--- 86,92 ----
  
  ;;; Code:
  
! (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,603 ****
        (setq pmin (point))
        (end-of-line)
        (setq pmax (point))
!       (if (equal pmin pmax)
          (progn
            (whitespace-highlight-the-space pmin pmax)
            t)
--- 597,603 ----
        (setq pmin (point))
        (end-of-line)
        (setq pmax (point))
!       (if (not (equal pmin pmax))
          (progn
            (whitespace-highlight-the-space pmin pmax)
            t)
***************
*** 635,641 ****
            (setq pmin (point))
            (end-of-line)
            (setq pmax (point))
!           (if (equal pmin pmax)
                (progn
                  (whitespace-highlight-the-space pmin pmax)
                  t)
--- 635,641 ----
            (setq pmin (point))
            (end-of-line)
            (setq pmax (point))
!           (if (not (equal pmin pmax))
                (progn
                  (whitespace-highlight-the-space pmin pmax)
                  t)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]