summaryrefslogtreecommitdiff
path: root/lisp/whitespace.el
diff options
context:
space:
mode:
authorVinicius Jose Latorre <viniciusjl@ig.com.br>2009-09-28 01:57:33 +0000
committerVinicius Jose Latorre <viniciusjl@ig.com.br>2009-09-28 01:57:33 +0000
commit748e3d67c4fd203b38916394cc8d57d674781345 (patch)
tree4a419b3c5c5cd5849a32515a8c2fe8a06ed2a8dd /lisp/whitespace.el
parente608e7bedce26a8b25584a83e12ddf5c5a0dd7e0 (diff)
downloademacs-748e3d67c4fd203b38916394cc8d57d674781345.tar.gz
Fix doc string.
Diffstat (limited to 'lisp/whitespace.el')
-rw-r--r--lisp/whitespace.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/whitespace.el b/lisp/whitespace.el
index 030d5f7473e..118a151d67d 100644
--- a/lisp/whitespace.el
+++ b/lisp/whitespace.el
@@ -6,7 +6,7 @@
;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
;; Keywords: data, wp
-;; Version: 12
+;; Version: 12.0
;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
;; This file is part of GNU Emacs.
@@ -2310,7 +2310,7 @@ resultant list will be returned."
(defun whitespace-trailing-regexp (limit)
- "Match trailing spaces which does not contain the point at end of line."
+ "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)
(save-match-data
@@ -2320,14 +2320,14 @@ resultant list will be returned."
(defun whitespace-empty-at-bob-regexp (limit)
- "Match spaces at beginning of buffer which does not contain the point at \
+ "Match spaces at beginning of buffer which do not contain the point at \
beginning of buffer."
(and (/= whitespace-point 1)
(re-search-forward whitespace-empty-at-bob-regexp limit t)))
(defun whitespace-empty-at-eob-regexp (limit)
- "Match spaces at end of buffer which does not contain the point at end of \
+ "Match spaces at end of buffer which do not contain the point at end of \
buffer."
(and (/= whitespace-point (1+ (buffer-size)))
(re-search-forward whitespace-empty-at-eob-regexp limit t)))