emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Juanma Barranquero
Subject: [Emacs-diffs] emacs/lisp ChangeLog align.el
Date: Thu, 26 Mar 2009 16:21:41 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      09/03/26 16:21:40

Modified files:
        lisp           : ChangeLog align.el 

Log message:
        * align.el (align-large-region, align-perl-modes, align-rules-list)
          (align-open-comment-modes): Fix typos in docstrings.
          (align-region-separate): Doc fixes.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15524&r2=1.15525
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/align.el?cvsroot=emacs&r1=1.34&r2=1.35

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15524
retrieving revision 1.15525
diff -u -b -r1.15524 -r1.15525
--- ChangeLog   26 Mar 2009 01:19:50 -0000      1.15524
+++ ChangeLog   26 Mar 2009 16:21:25 -0000      1.15525
@@ -1,3 +1,9 @@
+2009-03-26  Juanma Barranquero  <address@hidden>
+
+       * align.el (align-large-region, align-perl-modes, align-rules-list)
+       (align-open-comment-modes): Fix typos in docstrings.
+       (align-region-separate): Doc fixes.
+
 2009-03-26  Stefan Monnier  <address@hidden>
 
        * arc-mode.el (archive-ar-summarize): Don't burp on special GNU

Index: align.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/align.el,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -b -r1.34 -r1.35
--- align.el    24 Jan 2009 23:42:42 -0000      1.34
+++ align.el    26 Mar 2009 16:21:35 -0000      1.35
@@ -174,7 +174,7 @@
 
 (defcustom align-large-region 10000
   "If an integer, defines what constitutes a \"large\" region.
-If nil,then no messages will ever be printed to the minibuffer."
+If nil, then no messages will ever be printed to the minibuffer."
   :type 'integer
   :group 'align)
 
@@ -184,7 +184,7 @@
   :group 'align)
 
 (defcustom align-perl-modes '(perl-mode cperl-mode)
-  "A list of modes where perl syntax is to be seen."
+  "A list of modes where Perl syntax is to be seen."
   :type '(repeat symbol)
   :group 'align)
 
@@ -222,7 +222,7 @@
   (append align-lisp-modes align-c++-modes align-perl-modes
          '(python-mode makefile-mode))
   "A list of modes with a single-line comment syntax.
-These are comments as in Lisp, which have a beginning but, end with
+These are comments as in Lisp, which have a beginning, but end with
 the line (i.e., `comment-end' is an empty string)."
   :type '(repeat symbol)
   :group 'align)
@@ -259,8 +259,8 @@
 
  `group'   Each contiguous set of lines where a specific alignment
           occurs is considered a section for that alignment rule.
-          Note that each rule will may have any entirely different
-          set of section divisions than another.
+          Note that each rule may have any entirely different set
+           of section divisions than another.
 
             int    alpha = 1; /* one */
             double beta  = 2.0;
@@ -292,7 +292,7 @@
           between sections, the behavior will be very similar to
           `largest', and faster.  But if the mode does not use clear
           separators (for example, if you collapse your braces onto
-          the preceding statement in C or perl), `largest' is
+          the preceding statement in C or Perl), `largest' is
           probably the better alternative.
 
  function  A function that will be passed the beginning and ending
@@ -301,8 +301,8 @@
           both of these parameters will be nil, in which case the
           function should return non-nil if it wants each rule to
           define its own section, or nil if it wants the largest
-          section found to be used as the common section for all rules
-          that occur there.
+          section found to be used as the common section for all
+          rules that occur there.
 
  list      A list of markers within the buffer that represent where
           the section dividers lie.  Be certain to use markers!  For
@@ -623,8 +623,8 @@
            the purposes of alignment.  The \"alignment character\" is
            always the first character immediately following this
            parenthesis group.  This attribute may also be a list of
-           integer, in which case multiple alignment characters will
-           be aligned, with the list of integer identifying the
+           integers, in which case multiple alignment characters will
+           be aligned, with the list of integers identifying the
            whitespace groups which precede them.  The default for
            this attribute is 1.
 
@@ -636,7 +636,7 @@
 `case-fold' If `regexp' is an ordinary regular expression string
            containing alphabetic character, sometimes you may want
            the search to proceed case-insensitively (for languages
-           that ignore case, such as pascal for example).  In that
+           that ignore case, such as Pascal for example).  In that
            case, set `case-fold' to a non-nil value, and the regular
            expression search will ignore case.  If `regexp' is set to
            a function, that function must handle the job of ignoring




reply via email to

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