From: Vinicius Jose Latorre Date: Mon, 31 Oct 2011 01:39:04 +0000 (-0200) Subject: Adjust comment. X-Git-Tag: emacs-pretest-24.0.91~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44a31225c3abcc9f07d47168fa2243ae569aa10c;p=emacs.git Adjust comment. --- diff --git a/lisp/whitespace.el b/lisp/whitespace.el index 68ecb142f70..f50386b1827 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el @@ -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))