summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Jose Latorre <viniciusjl@ig.com.br>2011-10-30 23:39:04 -0200
committerVinicius Jose Latorre <viniciusjl@ig.com.br>2011-10-30 23:39:04 -0200
commit44a31225c3abcc9f07d47168fa2243ae569aa10c (patch)
tree3fa1af508b976346d5376bbd199f4641540cb835
parente1cf81b4ade4b7d93b773c20a416edc6a98ba5e8 (diff)
downloademacs-44a31225c3abcc9f07d47168fa2243ae569aa10c.tar.gz
Adjust comment.
-rw-r--r--lisp/whitespace.el4
1 files changed, 2 insertions, 2 deletions
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))