]> git.eshelyaron.com Git - emacs.git/commitdiff
Adjust comment.
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Mon, 31 Oct 2011 01:39:04 +0000 (23:39 -0200)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Mon, 31 Oct 2011 01:39:04 +0000 (23:39 -0200)
lisp/whitespace.el

index 68ecb142f709c6584bda33816caf4e5d741a103c..f50386b182778707996ca1475118096ba8bd65f9 100644 (file)
@@ -2408,8 +2408,8 @@ resultant list will be returned."
   "Match trailing spaces which do not contain the point at end of line."
   (let ((status t))
     (while (if (re-search-forward whitespace-trailing-regexp limit t)
-               (= whitespace-point (match-end 1)) ;; Loop if point at eol.
-            (setq status nil)))                  ;; End of buffer.
+              (= whitespace-point (match-end 1)) ;; loop if point at eol
+            (setq status nil)))                  ;; end of buffer
     status))