emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog whitespace.el


From: Vinicius Jose Latorre
Subject: [Emacs-diffs] emacs/lisp ChangeLog whitespace.el
Date: Mon, 28 Sep 2009 01:57:37 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Vinicius Jose Latorre <viniciusjl>      09/09/28 01:57:36

Modified files:
        lisp           : ChangeLog whitespace.el 

Log message:
        Fix doc string.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16277&r2=1.16278
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/whitespace.el?cvsroot=emacs&r1=1.92&r2=1.93

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16277
retrieving revision 1.16278
diff -u -b -r1.16277 -r1.16278
--- ChangeLog   28 Sep 2009 01:41:23 -0000      1.16277
+++ ChangeLog   28 Sep 2009 01:57:33 -0000      1.16278
@@ -18,6 +18,12 @@
        * cedet/mode-local.el:
        * cedet/pulse.el: New files.
 
+2009-09-27  Vinicius Jose Latorre  <address@hidden>
+
+       * whitespace.el (whitespace-trailing-regexp)
+       (whitespace-empty-at-bob-regexp, whitespace-empty-at-eob-regexp):
+       Fix doc string.
+
 2009-09-27  Chong Yidong  <address@hidden>
 
        * menu-bar.el: Remove menu-bar-ediff-misc-menu from the Tools

Index: whitespace.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/whitespace.el,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -b -r1.92 -r1.93
--- whitespace.el       25 Sep 2009 02:23:54 -0000      1.92
+++ whitespace.el       28 Sep 2009 01:57:36 -0000      1.93
@@ -6,7 +6,7 @@
 ;; Author: Vinicius Jose Latorre <address@hidden>
 ;; Maintainer: Vinicius Jose Latorre <address@hidden>
 ;; 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 @@
 
 
 (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 @@
 
 
 (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)))




reply via email to

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