emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109410: * sort.el (sort-regexp-field


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109410: * sort.el (sort-regexp-fields): Doc fix.
Date: Fri, 03 Aug 2012 16:15:24 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109410
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Fri 2012-08-03 16:15:24 +0800
message:
  * sort.el (sort-regexp-fields): Doc fix.
modified:
  lisp/ChangeLog
  lisp/sort.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-08-03 06:47:32 +0000
+++ b/lisp/ChangeLog    2012-08-03 08:15:24 +0000
@@ -1,3 +1,7 @@
+2012-08-03  Chong Yidong  <address@hidden>
+
+       * sort.el (sort-regexp-fields): Doc fix.
+
 2012-08-03  Tassilo Horn  <address@hidden>
 
        * textmodes/reftex.el (reftex-compile-variables): Make keyvals

=== modified file 'lisp/sort.el'
--- a/lisp/sort.el      2012-03-13 06:54:37 +0000
+++ b/lisp/sort.el      2012-08-03 08:15:24 +0000
@@ -401,18 +401,23 @@
 
 ;;;###autoload
 (defun sort-regexp-fields (reverse record-regexp key-regexp beg end)
-  "Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
-RECORD-REGEXP specifies the textual units which should be sorted.
-  For example, to sort lines RECORD-REGEXP would be \"^.*$\"
-KEY specifies the part of each record (ie each match for RECORD-REGEXP)
-  is to be used for sorting.
-  If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from
-  RECORD-REGEXP is used.
-  If it is \"\\\\&\" then the whole record is used.
-  Otherwise, it is a regular-expression for which to search within the record.
-If a match for KEY is not found within a record then that record is ignored.
-
-With a negative prefix arg sorts in reverse order.
+  "Sort the text in the region region lexicographically.
+If called interactively, prompt for two regular expressions,
+RECORD-REGEXP and KEY-REGEXP.
+
+RECORD-REGEXP specifies the textual units to be sorted.
+  For example, to sort lines, RECORD-REGEXP would be \"^.*$\".
+
+KEY-REGEXP specifies the part of each record (i.e. each match for
+  RECORD-REGEXP) to be used for sorting.
+  If it is \"\\\\digit\", use the digit'th \"\\\\(...\\\\)\"
+  match field specified by RECORD-REGEXP.
+  If it is \"\\\\&\", use the whole record.
+  Otherwise, KEY-REGEXP should be a regular expression with which
+  to search within the record.  If a match for KEY-REGEXP is not
+  found within a record, that record is ignored.
+
+With a negative prefix arg, sort in reverse order.
 
 The variable `sort-fold-case' determines whether alphabetic case affects
 the sort order.


reply via email to

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