2016-09-28 17:08:12 +00:00
|
|
|
|
;;; sort.el --- commands to sort text in an Emacs buffer -*- lexical-binding: t -*-
|
1992-05-30 21:11:25 +00:00
|
|
|
|
|
2023-01-01 10:31:12 +00:00
|
|
|
|
;; Copyright (C) 1986-1987, 1994-1995, 2001-2023 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
|
;; Foundation, Inc.
|
1992-07-22 02:58:21 +00:00
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;; Author: Howie Kaye
|
2019-05-25 20:43:06 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1992-07-17 20:24:00 +00:00
|
|
|
|
;; Keywords: unix
|
1992-07-16 21:47:34 +00:00
|
|
|
|
|
1990-06-29 17:35:02 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1990-06-29 17:35:02 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
1993-03-22 16:53:22 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; This package provides the sorting facilities documented in the Emacs
|
|
|
|
|
;; user's manual.
|
1993-03-22 16:53:22 +00:00
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;;; Code:
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
2022-05-03 19:23:40 +00:00
|
|
|
|
(eval-when-compile (require 'subr-x))
|
|
|
|
|
|
1997-08-18 20:01:25 +00:00
|
|
|
|
(defgroup sort nil
|
|
|
|
|
"Commands to sort text in an Emacs buffer."
|
|
|
|
|
:group 'data)
|
|
|
|
|
|
|
|
|
|
(defcustom sort-fold-case nil
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Non-nil if the buffer sort functions should ignore case."
|
1997-08-18 20:01:25 +00:00
|
|
|
|
:group 'sort
|
|
|
|
|
:type 'boolean)
|
2007-08-22 19:42:19 +00:00
|
|
|
|
;;;###autoload(put 'sort-fold-case 'safe-local-variable 'booleanp)
|
1993-06-01 20:35:33 +00:00
|
|
|
|
|
1994-03-23 00:43:06 +00:00
|
|
|
|
;;;###autoload
|
2003-06-02 21:19:38 +00:00
|
|
|
|
(defun sort-subr (reverse nextrecfun endrecfun
|
|
|
|
|
&optional startkeyfun endkeyfun predicate)
|
1990-06-29 17:35:02 +00:00
|
|
|
|
"General text sorting routine to divide buffer into records and sort them.
|
|
|
|
|
|
1992-08-18 03:12:53 +00:00
|
|
|
|
We divide the accessible portion of the buffer into disjoint pieces
|
1992-08-19 03:54:46 +00:00
|
|
|
|
called sort records. A portion of each sort record (perhaps all of
|
|
|
|
|
it) is designated as the sort key. The records are rearranged in the
|
|
|
|
|
buffer in order by their sort keys. The records may or may not be
|
|
|
|
|
contiguous.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
Usually the records are rearranged in order of ascending sort key.
|
|
|
|
|
If REVERSE is non-nil, they are rearranged in order of descending sort key.
|
1996-12-27 21:12:40 +00:00
|
|
|
|
The variable `sort-fold-case' determines whether alphabetic case affects
|
|
|
|
|
the sort order.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
The next four arguments are functions to be called to move point
|
2021-09-14 06:43:18 +00:00
|
|
|
|
across a sort record. They will be called many times from within `sort-subr'.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
NEXTRECFUN is called with point at the end of the previous record.
|
|
|
|
|
It moves point to the start of the next record.
|
|
|
|
|
It should move point to the end of the buffer if there are no more records.
|
2021-09-14 06:43:18 +00:00
|
|
|
|
The first record is assumed to start at the position of point when `sort-subr'
|
1990-06-29 17:35:02 +00:00
|
|
|
|
is called.
|
|
|
|
|
|
1993-02-03 04:33:30 +00:00
|
|
|
|
ENDRECFUN is called with point within the record.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
It should move point to the end of the record.
|
|
|
|
|
|
1993-02-03 04:33:30 +00:00
|
|
|
|
STARTKEYFUN moves from the start of the record to the start of the key.
|
|
|
|
|
It may return either a non-nil value to be used as the key, or
|
1992-08-18 03:12:53 +00:00
|
|
|
|
else the key is the substring between the values of point after
|
1990-12-10 18:52:37 +00:00
|
|
|
|
STARTKEYFUN and ENDKEYFUN are called. If STARTKEYFUN is nil, the key
|
|
|
|
|
starts at the beginning of the record.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
ENDKEYFUN moves from the start of the sort key to the end of the sort key.
|
|
|
|
|
ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
|
2003-06-02 21:19:38 +00:00
|
|
|
|
same as ENDRECFUN.
|
|
|
|
|
|
2012-12-21 03:17:57 +00:00
|
|
|
|
PREDICATE, if non-nil, is the predicate function for comparing
|
|
|
|
|
keys; it is called with two arguments, the keys to compare, and
|
|
|
|
|
should return non-nil if the first key should sort before the
|
|
|
|
|
second key. If PREDICATE is nil, comparison is done with `<' if
|
|
|
|
|
the keys are numbers, with `compare-buffer-substrings' if the
|
|
|
|
|
keys are cons cells (the car and cdr of each cons cell are taken
|
|
|
|
|
as start and end positions), and with `string<' otherwise."
|
2022-12-23 17:21:10 +00:00
|
|
|
|
;; Heuristically try to avoid messages if sorting a small amount of text.
|
1992-08-18 03:12:53 +00:00
|
|
|
|
(let ((messages (> (- (point-max) (point-min)) 50000)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if messages (message "Finding sort keys..."))
|
|
|
|
|
(let* ((sort-lists (sort-build-lists nextrecfun endrecfun
|
|
|
|
|
startkeyfun endkeyfun))
|
1993-06-01 20:35:33 +00:00
|
|
|
|
(old (reverse sort-lists))
|
|
|
|
|
(case-fold-search sort-fold-case))
|
1992-08-18 03:12:53 +00:00
|
|
|
|
(if (null sort-lists)
|
|
|
|
|
()
|
|
|
|
|
(or reverse (setq sort-lists (nreverse sort-lists)))
|
|
|
|
|
(if messages (message "Sorting records..."))
|
|
|
|
|
(setq sort-lists
|
2003-06-02 21:19:38 +00:00
|
|
|
|
(sort sort-lists
|
|
|
|
|
(cond (predicate
|
|
|
|
|
`(lambda (a b) (,predicate (car a) (car b))))
|
|
|
|
|
((numberp (car (car sort-lists)))
|
|
|
|
|
'car-less-than-car)
|
|
|
|
|
((consp (car (car sort-lists)))
|
|
|
|
|
(lambda (a b)
|
|
|
|
|
(> 0 (compare-buffer-substrings
|
|
|
|
|
nil (car (car a)) (cdr (car a))
|
|
|
|
|
nil (car (car b)) (cdr (car b))))))
|
|
|
|
|
(t
|
|
|
|
|
(lambda (a b) (string< (car a) (car b)))))))
|
1992-08-18 03:12:53 +00:00
|
|
|
|
(if reverse (setq sort-lists (nreverse sort-lists)))
|
|
|
|
|
(if messages (message "Reordering buffer..."))
|
2022-05-03 19:23:40 +00:00
|
|
|
|
(with-buffer-unmodified-if-unchanged
|
|
|
|
|
(sort-reorder-buffer sort-lists old))))
|
1992-08-18 03:12:53 +00:00
|
|
|
|
(if messages (message "Reordering buffer... Done"))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
nil)
|
|
|
|
|
|
|
|
|
|
;; Parse buffer into records using the arguments as Lisp expressions;
|
1990-12-11 13:43:28 +00:00
|
|
|
|
;; return a list of records. Each record looks like (KEY STARTPOS . ENDPOS)
|
1990-06-29 17:35:02 +00:00
|
|
|
|
;; where KEY is the sort key (a number or string),
|
|
|
|
|
;; and STARTPOS and ENDPOS are the bounds of this record in the buffer.
|
|
|
|
|
|
|
|
|
|
;; The records appear in the list lastmost first!
|
|
|
|
|
|
|
|
|
|
(defun sort-build-lists (nextrecfun endrecfun startkeyfun endkeyfun)
|
|
|
|
|
(let ((sort-lists ())
|
|
|
|
|
(start-rec nil)
|
|
|
|
|
done key)
|
|
|
|
|
;; Loop over sort records.
|
|
|
|
|
;(goto-char (point-min)) -- it is the caller's responsibility to
|
|
|
|
|
;arrange this if necessary
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(setq start-rec (point)) ;save record start
|
|
|
|
|
(setq done nil)
|
|
|
|
|
;; Get key value, or move to start of key.
|
|
|
|
|
(setq key (catch 'key
|
|
|
|
|
(or (and startkeyfun (funcall startkeyfun))
|
|
|
|
|
;; If key was not returned as value,
|
|
|
|
|
;; move to end of key and get key from the buffer.
|
|
|
|
|
(let ((start (point)))
|
|
|
|
|
(funcall (or endkeyfun
|
|
|
|
|
(prog1 endrecfun (setq done t))))
|
1993-02-07 05:54:14 +00:00
|
|
|
|
(cons start (point))))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
;; Move to end of this record (start of next one, or end of buffer).
|
|
|
|
|
(cond ((prog1 done (setq done nil)))
|
|
|
|
|
(endrecfun (funcall endrecfun))
|
|
|
|
|
(nextrecfun (funcall nextrecfun) (setq done t)))
|
2003-06-02 21:19:38 +00:00
|
|
|
|
(if key (push
|
|
|
|
|
;; consing optimization in case in which key is same as record.
|
|
|
|
|
(if (and (consp key)
|
|
|
|
|
(equal (car key) start-rec)
|
|
|
|
|
(equal (cdr key) (point)))
|
|
|
|
|
(cons key key)
|
|
|
|
|
(cons key (cons start-rec (point))))
|
|
|
|
|
sort-lists))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(and (not done) nextrecfun (funcall nextrecfun)))
|
|
|
|
|
sort-lists))
|
|
|
|
|
|
|
|
|
|
(defun sort-reorder-buffer (sort-lists old)
|
2001-12-23 06:46:19 +00:00
|
|
|
|
(let ((last (point-min))
|
|
|
|
|
(min (point-min)) (max (point-max))
|
|
|
|
|
(old-buffer (current-buffer))
|
2008-03-20 15:41:44 +00:00
|
|
|
|
(mb enable-multibyte-characters)
|
2001-12-23 06:46:19 +00:00
|
|
|
|
temp-buffer)
|
|
|
|
|
(with-temp-buffer
|
2008-03-20 15:41:44 +00:00
|
|
|
|
(set-buffer-multibyte mb)
|
2001-12-23 06:46:19 +00:00
|
|
|
|
;; Record the temporary buffer.
|
|
|
|
|
(setq temp-buffer (current-buffer))
|
|
|
|
|
|
|
|
|
|
;; Copy the sorted text into the temporary buffer.
|
|
|
|
|
(while sort-lists
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert-buffer-substring old-buffer
|
|
|
|
|
last
|
|
|
|
|
(nth 1 (car old)))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert-buffer-substring old-buffer
|
|
|
|
|
(nth 1 (car sort-lists))
|
|
|
|
|
(cdr (cdr (car sort-lists))))
|
|
|
|
|
(setq last (cdr (cdr (car old)))
|
|
|
|
|
sort-lists (cdr sort-lists)
|
|
|
|
|
old (cdr old)))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(goto-char (point-max))
|
2002-04-12 03:42:56 +00:00
|
|
|
|
(insert-buffer-substring old-buffer last max)
|
2001-12-23 06:46:19 +00:00
|
|
|
|
|
|
|
|
|
;; Copy the reordered text from the temporary buffer
|
|
|
|
|
;; to the buffer we sorted (OLD-BUFFER).
|
|
|
|
|
(set-buffer old-buffer)
|
|
|
|
|
(let ((inhibit-quit t))
|
|
|
|
|
;; Make sure insertions done for reordering
|
2003-04-02 21:37:53 +00:00
|
|
|
|
;; saves any markers at the end of the sorted region,
|
|
|
|
|
;; by leaving the last character of the region.
|
|
|
|
|
(delete-region min (1- max))
|
|
|
|
|
;; Now replace the one remaining old character with the sorted text.
|
|
|
|
|
(goto-char (point-min))
|
2002-04-12 03:42:56 +00:00
|
|
|
|
(insert-buffer-substring temp-buffer)
|
2003-04-02 21:37:53 +00:00
|
|
|
|
(delete-region max (1+ max))))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
2003-02-04 12:29:42 +00:00
|
|
|
|
(defun sort-lines (reverse beg end)
|
2020-04-18 16:26:30 +00:00
|
|
|
|
"Sort lines in region alphabetically; REVERSE non-nil means descending order.
|
|
|
|
|
Interactively, REVERSE is the prefix argument, and BEG and END are the region.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
Called from a program, there are three arguments:
|
1996-12-27 21:12:40 +00:00
|
|
|
|
REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
|
|
|
The variable `sort-fold-case' determines whether alphabetic case affects
|
|
|
|
|
the sort order."
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(interactive "P\nr")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
|
(goto-char (point-min))
|
2006-04-04 01:21:26 +00:00
|
|
|
|
(let ;; To make `end-of-line' and etc. to ignore fields.
|
|
|
|
|
((inhibit-field-text-motion t))
|
|
|
|
|
(sort-subr reverse 'forward-line 'end-of-line)))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(defun sort-paragraphs (reverse beg end)
|
|
|
|
|
"Sort paragraphs in region alphabetically; argument means descending order.
|
|
|
|
|
Called from a program, there are three arguments:
|
1996-12-27 21:12:40 +00:00
|
|
|
|
REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
|
|
|
The variable `sort-fold-case' determines whether alphabetic case affects
|
|
|
|
|
the sort order."
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(interactive "P\nr")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(sort-subr reverse
|
2019-08-23 01:43:41 +00:00
|
|
|
|
(lambda ()
|
|
|
|
|
(while (and (not (eobp)) (looking-at paragraph-separate))
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
(lambda ()
|
|
|
|
|
(forward-paragraph)
|
|
|
|
|
;; If the buffer doesn't end with a newline, add a
|
|
|
|
|
;; newline to avoid having paragraphs being
|
|
|
|
|
;; concatenated after sorting.
|
|
|
|
|
(when (and (eobp)
|
|
|
|
|
(not (bolp)))
|
|
|
|
|
(insert "\n")))))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(defun sort-pages (reverse beg end)
|
|
|
|
|
"Sort pages in region alphabetically; argument means descending order.
|
|
|
|
|
Called from a program, there are three arguments:
|
1996-12-27 21:12:40 +00:00
|
|
|
|
REVERSE (non-nil means reverse order), BEG and END (region to sort).
|
|
|
|
|
The variable `sort-fold-case' determines whether alphabetic case affects
|
|
|
|
|
the sort order."
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(interactive "P\nr")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(sort-subr reverse
|
2020-11-12 21:06:47 +00:00
|
|
|
|
(lambda () (skip-chars-forward "\n"))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
'forward-page))))
|
|
|
|
|
|
|
|
|
|
(defvar sort-fields-syntax-table nil)
|
|
|
|
|
(if sort-fields-syntax-table nil
|
|
|
|
|
(let ((table (make-syntax-table))
|
|
|
|
|
(i 0))
|
|
|
|
|
(while (< i 256)
|
|
|
|
|
(modify-syntax-entry i "w" table)
|
|
|
|
|
(setq i (1+ i)))
|
2006-11-27 14:04:50 +00:00
|
|
|
|
(modify-syntax-entry ?\s " " table)
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(modify-syntax-entry ?\t " " table)
|
|
|
|
|
(modify-syntax-entry ?\n " " table)
|
|
|
|
|
(modify-syntax-entry ?\. "_" table) ; for floating pt. numbers. -wsr
|
|
|
|
|
(setq sort-fields-syntax-table table)))
|
|
|
|
|
|
2000-01-28 12:47:38 +00:00
|
|
|
|
(defcustom sort-numeric-base 10
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"The default base used by `sort-numeric-fields'."
|
2000-01-28 12:47:38 +00:00
|
|
|
|
:group 'sort
|
|
|
|
|
:type 'integer)
|
2007-08-22 19:42:19 +00:00
|
|
|
|
;;;###autoload(put 'sort-numeric-base 'safe-local-variable 'integerp)
|
2000-01-28 12:47:38 +00:00
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(defun sort-numeric-fields (field beg end)
|
|
|
|
|
"Sort lines in region numerically by the ARGth field of each line.
|
|
|
|
|
Fields are separated by whitespace and numbered from 1 up.
|
2000-01-28 12:47:38 +00:00
|
|
|
|
Specified field must contain a number in each line of the region,
|
|
|
|
|
which may begin with \"0x\" or \"0\" for hexadecimal and octal values.
|
|
|
|
|
Otherwise, the number is interpreted according to sort-numeric-base.
|
1990-08-28 11:59:54 +00:00
|
|
|
|
With a negative arg, sorts by the ARGth field counted from the right.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
Called from a program, there are three arguments:
|
1994-01-03 04:15:18 +00:00
|
|
|
|
FIELD, BEG and END. BEG and END specify region to sort."
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(interactive "p\nr")
|
2006-04-04 01:21:26 +00:00
|
|
|
|
(let ;; To make `end-of-line' and etc. to ignore fields.
|
|
|
|
|
((inhibit-field-text-motion t))
|
2022-02-03 19:33:58 +00:00
|
|
|
|
(sort-fields-1
|
|
|
|
|
field beg end
|
|
|
|
|
(lambda ()
|
|
|
|
|
;; Don't try to parse blank lines (they'll be
|
|
|
|
|
;; sorted at the start).
|
|
|
|
|
(if (looking-at "[\t ]*$")
|
|
|
|
|
0
|
|
|
|
|
(sort-skip-fields field)
|
|
|
|
|
(let* ((case-fold-search t)
|
|
|
|
|
(base
|
|
|
|
|
(if (looking-at "\\(0x\\)[0-9a-f]\\|\\(0\\)[0-7]")
|
|
|
|
|
(cond ((match-beginning 1)
|
|
|
|
|
(goto-char (match-end 1))
|
|
|
|
|
16)
|
|
|
|
|
((match-beginning 2)
|
|
|
|
|
(goto-char (match-end 2))
|
|
|
|
|
8)
|
|
|
|
|
(t nil)))))
|
|
|
|
|
(string-to-number (buffer-substring (point)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(forward-sexp 1)
|
|
|
|
|
(point)))
|
|
|
|
|
(or base sort-numeric-base)))))
|
|
|
|
|
nil)))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
1994-01-03 04:15:18 +00:00
|
|
|
|
;;;;;###autoload
|
|
|
|
|
;;(defun sort-float-fields (field beg end)
|
|
|
|
|
;; "Sort lines in region numerically by the ARGth field of each line.
|
|
|
|
|
;;Fields are separated by whitespace and numbered from 1 up. Specified field
|
|
|
|
|
;;must contain a floating point number in each line of the region. With a
|
|
|
|
|
;;negative arg, sorts by the ARGth field counted from the right. Called from a
|
|
|
|
|
;;program, there are three arguments: FIELD, BEG and END. BEG and END specify
|
|
|
|
|
;;region to sort."
|
|
|
|
|
;; (interactive "p\nr")
|
|
|
|
|
;; (sort-fields-1 field beg end
|
2020-11-12 21:06:47 +00:00
|
|
|
|
;; (lambda ()
|
|
|
|
|
;; (sort-skip-fields field)
|
|
|
|
|
;; (string-to-number
|
|
|
|
|
;; (buffer-substring
|
|
|
|
|
;; (point)
|
|
|
|
|
;; (save-excursion
|
|
|
|
|
;; (re-search-forward
|
|
|
|
|
;; "[+-]?[0-9]*\\.?[0-9]*\\([eE][+-]?[0-9]+\\)?")
|
|
|
|
|
;; (point)))))
|
|
|
|
|
;; nil))
|
1990-08-28 11:59:54 +00:00
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(defun sort-fields (field beg end)
|
|
|
|
|
"Sort lines in region lexicographically by the ARGth field of each line.
|
|
|
|
|
Fields are separated by whitespace and numbered from 1 up.
|
1990-08-28 11:59:54 +00:00
|
|
|
|
With a negative arg, sorts by the ARGth field counted from the right.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
Called from a program, there are three arguments:
|
1996-12-27 21:12:40 +00:00
|
|
|
|
FIELD, BEG and END. BEG and END specify region to sort.
|
|
|
|
|
The variable `sort-fold-case' determines whether alphabetic case affects
|
|
|
|
|
the sort order."
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(interactive "p\nr")
|
2006-04-04 01:21:26 +00:00
|
|
|
|
(let ;; To make `end-of-line' and etc. to ignore fields.
|
|
|
|
|
((inhibit-field-text-motion t))
|
|
|
|
|
(sort-fields-1 field beg end
|
2020-11-12 21:06:47 +00:00
|
|
|
|
(lambda ()
|
|
|
|
|
(sort-skip-fields field)
|
|
|
|
|
nil)
|
|
|
|
|
(lambda () (skip-chars-forward "^ \t\n")))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
(defun sort-fields-1 (field beg end startkeyfun endkeyfun)
|
1990-08-28 11:59:54 +00:00
|
|
|
|
(let ((tbl (syntax-table)))
|
|
|
|
|
(if (zerop field) (setq field 1))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(set-syntax-table sort-fields-syntax-table)
|
1990-08-28 11:59:54 +00:00
|
|
|
|
(sort-subr nil
|
1990-06-29 17:35:02 +00:00
|
|
|
|
'forward-line 'end-of-line
|
|
|
|
|
startkeyfun endkeyfun)))
|
|
|
|
|
(set-syntax-table tbl))))
|
|
|
|
|
|
1993-07-23 04:44:06 +00:00
|
|
|
|
;; Position at the beginning of field N on the current line,
|
|
|
|
|
;; assuming point is initially at the beginning of the line.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(defun sort-skip-fields (n)
|
1993-07-23 04:44:06 +00:00
|
|
|
|
(if (> n 0)
|
|
|
|
|
;; Skip across N - 1 fields.
|
|
|
|
|
(let ((i (1- n)))
|
|
|
|
|
(while (> i 0)
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(skip-chars-forward "^ \t\n")
|
|
|
|
|
(setq i (1- i)))
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(if (eolp)
|
|
|
|
|
(error "Line has too few fields: %s"
|
|
|
|
|
(buffer-substring
|
Use line-end-position rather than end-of-line, etc.
* textmodes/texnfo-upd.el (texinfo-start-menu-description)
(texinfo-update-menu-region-beginning, texinfo-menu-first-node)
(texinfo-delete-existing-pointers, texinfo-find-pointer)
(texinfo-clean-up-node-line, texinfo-insert-node-lines)
(texinfo-multiple-files-update):
* textmodes/table.el (table--probe-cell-left-up)
(table--probe-cell-right-bottom):
* textmodes/picture.el (picture-tab-search):
* textmodes/page-ext.el (pages-copy-header-and-position)
(pages-directory-for-addresses):
* progmodes/vera-mode.el (vera-get-offset):
* progmodes/simula.el (simula-calculate-indent):
* progmodes/python.el (python-pdbtrack-overlay-arrow):
* progmodes/prolog.el (end-of-prolog-clause):
* progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
* progmodes/icon.el (indent-icon-exp):
* progmodes/etags.el (tag-re-match-p):
* progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
* progmodes/ebnf2ps.el (ebnf-begin-file):
* progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-save-local-variable):
* play/life.el (life-setup):
* play/gametree.el (gametree-looking-at-ply):
* nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* mail/sendmail.el (mail-mode-auto-fill):
* emacs-lisp/lisp-mode.el (calculate-lisp-indent):
* emacs-lisp/edebug.el (edebug-overlay-arrow):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
* woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
(woman-tab-to-tab-stop, WoMan-warn-ignored):
* type-break.el (type-break-file-keystroke-count):
* term.el (term-replace-by-expanded-history-before-point)
(term-skip-prompt, term-extract-string):
* speedbar.el (speedbar-edit-line, speedbar-expand-line)
(speedbar-contract-line, speedbar-toggle-line-expansion)
(speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
(speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
* sort.el (sort-skip-fields):
* skeleton.el (skeleton-internal-list):
* simple.el (line-move-finish, line-move-to-column):
* shell.el (shell-forward-command):
* misc.el (copy-from-above-command):
* makesum.el (double-column):
* ebuff-menu.el (electric-buffer-update-highlight):
* dired.el (dired-move-to-end-of-filename):
* dframe.el (dframe-popup-kludge):
* bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
* arc-mode.el (archive-get-lineno):
Use line-end-position and line-beginning-position.
* net/ange-ftp.el, progmodes/hideif.el, reposition.el:
Same, but only in comments.
2010-11-06 20:23:42 +00:00
|
|
|
|
(line-beginning-position)
|
|
|
|
|
(line-end-position)))))
|
1993-07-23 04:44:06 +00:00
|
|
|
|
(end-of-line)
|
|
|
|
|
;; Skip back across - N - 1 fields.
|
|
|
|
|
(let ((i (1- (- n))))
|
|
|
|
|
(while (> i 0)
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(skip-chars-backward "^ \t\n")
|
|
|
|
|
(setq i (1- i)))
|
|
|
|
|
(skip-chars-backward " \t"))
|
|
|
|
|
(if (bolp)
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(error "Line has too few fields: %s"
|
1993-07-23 04:44:06 +00:00
|
|
|
|
(buffer-substring
|
Use line-end-position rather than end-of-line, etc.
* textmodes/texnfo-upd.el (texinfo-start-menu-description)
(texinfo-update-menu-region-beginning, texinfo-menu-first-node)
(texinfo-delete-existing-pointers, texinfo-find-pointer)
(texinfo-clean-up-node-line, texinfo-insert-node-lines)
(texinfo-multiple-files-update):
* textmodes/table.el (table--probe-cell-left-up)
(table--probe-cell-right-bottom):
* textmodes/picture.el (picture-tab-search):
* textmodes/page-ext.el (pages-copy-header-and-position)
(pages-directory-for-addresses):
* progmodes/vera-mode.el (vera-get-offset):
* progmodes/simula.el (simula-calculate-indent):
* progmodes/python.el (python-pdbtrack-overlay-arrow):
* progmodes/prolog.el (end-of-prolog-clause):
* progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
* progmodes/icon.el (indent-icon-exp):
* progmodes/etags.el (tag-re-match-p):
* progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
* progmodes/ebnf2ps.el (ebnf-begin-file):
* progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-save-local-variable):
* play/life.el (life-setup):
* play/gametree.el (gametree-looking-at-ply):
* nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* mail/sendmail.el (mail-mode-auto-fill):
* emacs-lisp/lisp-mode.el (calculate-lisp-indent):
* emacs-lisp/edebug.el (edebug-overlay-arrow):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
* woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
(woman-tab-to-tab-stop, WoMan-warn-ignored):
* type-break.el (type-break-file-keystroke-count):
* term.el (term-replace-by-expanded-history-before-point)
(term-skip-prompt, term-extract-string):
* speedbar.el (speedbar-edit-line, speedbar-expand-line)
(speedbar-contract-line, speedbar-toggle-line-expansion)
(speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
(speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
* sort.el (sort-skip-fields):
* skeleton.el (skeleton-internal-list):
* simple.el (line-move-finish, line-move-to-column):
* shell.el (shell-forward-command):
* misc.el (copy-from-above-command):
* makesum.el (double-column):
* ebuff-menu.el (electric-buffer-update-highlight):
* dired.el (dired-move-to-end-of-filename):
* dframe.el (dframe-popup-kludge):
* bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
* arc-mode.el (archive-get-lineno):
Use line-end-position and line-beginning-position.
* net/ange-ftp.el, progmodes/hideif.el, reposition.el:
Same, but only in comments.
2010-11-06 20:23:42 +00:00
|
|
|
|
(line-beginning-position)
|
|
|
|
|
(line-end-position))))
|
1993-07-23 04:44:06 +00:00
|
|
|
|
;; Position at the front of the field
|
|
|
|
|
;; even if moving backwards.
|
|
|
|
|
(skip-chars-backward "^ \t\n")))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
1995-02-15 22:21:25 +00:00
|
|
|
|
(defvar sort-regexp-fields-regexp)
|
|
|
|
|
(defvar sort-regexp-record-end)
|
|
|
|
|
|
|
|
|
|
;; Move to the beginning of the next match for record-regexp,
|
|
|
|
|
;; and set sort-regexp-record-end to the end of that match.
|
|
|
|
|
;; If the next match is empty and does not advance point,
|
|
|
|
|
;; skip one character and try again.
|
|
|
|
|
(defun sort-regexp-fields-next-record ()
|
|
|
|
|
(let ((oldpos (point)))
|
|
|
|
|
(and (re-search-forward sort-regexp-fields-regexp nil 'move)
|
|
|
|
|
(setq sort-regexp-record-end (match-end 0))
|
|
|
|
|
(if (= sort-regexp-record-end oldpos)
|
|
|
|
|
(progn
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(re-search-forward sort-regexp-fields-regexp nil 'move)
|
|
|
|
|
(setq sort-regexp-record-end (match-end 0)))
|
|
|
|
|
t)
|
|
|
|
|
(goto-char (match-beginning 0)))))
|
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(defun sort-regexp-fields (reverse record-regexp key-regexp beg end)
|
2017-10-29 00:10:25 +00:00
|
|
|
|
"Sort the text in the region lexicographically.
|
2012-08-03 08:15:24 +00:00
|
|
|
|
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.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
1996-12-27 21:12:40 +00:00
|
|
|
|
The variable `sort-fold-case' determines whether alphabetic case affects
|
|
|
|
|
the sort order.
|
|
|
|
|
|
1990-06-29 17:35:02 +00:00
|
|
|
|
For example: to sort lines in the region by the first word on each line
|
|
|
|
|
starting with the letter \"f\",
|
1995-11-25 00:28:04 +00:00
|
|
|
|
RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\""
|
1990-08-28 11:59:54 +00:00
|
|
|
|
;; using negative prefix arg to mean "reverse" is now inconsistent with
|
|
|
|
|
;; other sort-.*fields functions but then again this was before, since it
|
|
|
|
|
;; didn't use the magnitude of the arg to specify anything.
|
2012-03-13 06:54:37 +00:00
|
|
|
|
(interactive "P\nsRegexp specifying records to sort: \n\
|
1990-06-29 17:35:02 +00:00
|
|
|
|
sRegexp specifying key within record: \nr")
|
|
|
|
|
(cond ((or (equal key-regexp "") (equal key-regexp "\\&"))
|
|
|
|
|
(setq key-regexp 0))
|
|
|
|
|
((string-match "\\`\\\\[1-9]\\'" key-regexp)
|
|
|
|
|
(setq key-regexp (- (aref key-regexp 1) ?0))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
|
(goto-char (point-min))
|
1995-02-15 22:21:25 +00:00
|
|
|
|
(let (sort-regexp-record-end
|
|
|
|
|
(sort-regexp-fields-regexp record-regexp))
|
2003-01-09 23:28:25 +00:00
|
|
|
|
(re-search-forward sort-regexp-fields-regexp nil t)
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(setq sort-regexp-record-end (point))
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(sort-subr reverse
|
1995-02-15 22:21:25 +00:00
|
|
|
|
'sort-regexp-fields-next-record
|
2020-11-12 21:06:47 +00:00
|
|
|
|
(lambda ()
|
|
|
|
|
(goto-char sort-regexp-record-end))
|
|
|
|
|
(lambda ()
|
|
|
|
|
(let ((n 0))
|
|
|
|
|
(cond ((numberp key-regexp)
|
|
|
|
|
(setq n key-regexp))
|
|
|
|
|
((re-search-forward
|
|
|
|
|
key-regexp sort-regexp-record-end t)
|
|
|
|
|
(setq n 0))
|
|
|
|
|
(t (throw 'key nil)))
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(cons (match-beginning n)
|
|
|
|
|
(match-end n))
|
|
|
|
|
;; if there was no such register
|
|
|
|
|
(error (throw 'key nil))))))))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defvar sort-columns-subprocess t)
|
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(defun sort-columns (reverse &optional beg end)
|
|
|
|
|
"Sort lines in region alphabetically by a certain range of columns.
|
2000-11-29 13:14:06 +00:00
|
|
|
|
For the purpose of this command, the region BEG...END includes
|
1990-06-29 17:35:02 +00:00
|
|
|
|
the entire line that point is in and the entire line the mark is in.
|
|
|
|
|
The column positions of point and mark bound the range of columns to sort on.
|
2000-11-29 13:14:06 +00:00
|
|
|
|
A prefix argument means sort into REVERSE order.
|
1996-12-27 21:12:40 +00:00
|
|
|
|
The variable `sort-fold-case' determines whether alphabetic case affects
|
|
|
|
|
the sort order.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
|
|
|
|
|
Note that `sort-columns' rejects text that contains tabs,
|
|
|
|
|
because tabs could be split across the specified columns
|
|
|
|
|
and it doesn't know how to handle that. Also, when possible,
|
|
|
|
|
it uses the `sort' utility program, which doesn't understand tabs.
|
|
|
|
|
Use \\[untabify] to convert tabs to spaces before sorting."
|
|
|
|
|
(interactive "P\nr")
|
|
|
|
|
(save-excursion
|
2006-04-04 01:21:26 +00:00
|
|
|
|
(let ;; To make `end-of-line' and etc. to ignore fields.
|
|
|
|
|
((inhibit-field-text-motion t)
|
|
|
|
|
beg1 end1 col-beg1 col-end1 col-start col-end)
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(goto-char (min beg end))
|
|
|
|
|
(setq col-beg1 (current-column))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq beg1 (point))
|
|
|
|
|
(goto-char (max beg end))
|
|
|
|
|
(setq col-end1 (current-column))
|
|
|
|
|
(forward-line)
|
|
|
|
|
(setq end1 (point))
|
|
|
|
|
(setq col-start (min col-beg1 col-end1))
|
|
|
|
|
(setq col-end (max col-beg1 col-end1))
|
|
|
|
|
(if (search-backward "\t" beg1 t)
|
2021-09-22 18:26:40 +00:00
|
|
|
|
(error (substitute-command-keys
|
|
|
|
|
"sort-columns does not work with tabs -- use \\[untabify]")))
|
2008-07-31 05:33:56 +00:00
|
|
|
|
(if (not (or (memq system-type '(windows-nt))
|
2004-03-05 11:31:58 +00:00
|
|
|
|
(let ((pos beg1) plist fontified)
|
|
|
|
|
(catch 'found
|
|
|
|
|
(while (< pos end1)
|
|
|
|
|
(setq plist (text-properties-at pos))
|
|
|
|
|
(setq fontified (plist-get plist 'fontified))
|
|
|
|
|
(while (consp plist)
|
|
|
|
|
(unless (or (eq (car plist) 'fontified)
|
|
|
|
|
(and (eq (car plist) 'face)
|
|
|
|
|
fontified))
|
|
|
|
|
(throw 'found t))
|
|
|
|
|
(setq plist (cddr plist)))
|
|
|
|
|
(setq pos (next-property-change pos nil end1)))))))
|
1990-06-29 17:35:02 +00:00
|
|
|
|
;; Use the sort utility if we can; it is 4 times as fast.
|
2004-03-05 11:31:58 +00:00
|
|
|
|
;; Do not use it if there are any non-font-lock properties
|
|
|
|
|
;; in the region, since the sort utility would lose the
|
2006-11-03 15:43:58 +00:00
|
|
|
|
;; properties. Tabs are used as field separator; on NetBSD,
|
|
|
|
|
;; sort complains if "\n" is used as field separator.
|
2006-11-03 14:33:38 +00:00
|
|
|
|
(let ((sort-args (list (if reverse "-rt\t" "-t\t")
|
2006-02-21 19:52:28 +00:00
|
|
|
|
(format "-k1.%d,1.%d"
|
|
|
|
|
(1+ col-start)
|
|
|
|
|
(1+ col-end)))))
|
2000-11-16 16:43:52 +00:00
|
|
|
|
(when sort-fold-case
|
|
|
|
|
(push "-f" sort-args))
|
|
|
|
|
(apply #'call-process-region beg1 end1 "sort" t t nil sort-args))
|
2008-07-31 05:33:56 +00:00
|
|
|
|
;; On ms-windows, use Emacs's own facilities.
|
1990-06-29 17:35:02 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg1 end1)
|
|
|
|
|
(goto-char beg1)
|
|
|
|
|
(sort-subr reverse 'forward-line 'end-of-line
|
Remove redundant #' before lambda
* admin/unidata/unidata-gen.el (unidata-gen-table)
(unidata-gen-table-symbol, unidata-gen-table-integer)
(unidata-gen-table-numeric, unidata-gen-table-word-list)
(unidata-describe-decomposition):
* lisp/apropos.el (apropos-user-option):
* lisp/bookmark.el (bookmark-bmenu-search):
* lisp/composite.el (unicode-category-table):
* lisp/elec-pair.el (electric-pair--balance-info):
* lisp/electric.el (electric-quote-chars):
* lisp/emulation/cua-base.el (cua-rectangle-mark-key):
* lisp/epa-hook.el (epa-file-encrypt-to):
* lisp/faces.el (face-font-selection-order)
(face-font-family-alternatives, face-font-registry-alternatives)
(face-valid-attribute-values, tty-run-terminal-initialization):
* lisp/files.el (recover-file, file-expand-wildcards):
* lisp/frame.el (frames-on-display-list):
* lisp/help-at-pt.el (help-at-pt-display-when-idle):
* lisp/help-fns.el (help-fns--face-attributes):
* lisp/ido.el (ido-mode, ido-unc-hosts):
* lisp/isearch.el (isearch-highlight-regexp)
(isearch-highlight-lines-matching-regexp):
* lisp/language/indian.el (script-regexp-alist):
* lisp/language/lao.el:
* lisp/leim/quail/ipa.el (ipa-x-sampa-prepend-to-keymap-entry):
* lisp/mh-e/mh-folder.el (mh-process-commands):
* lisp/mh-e/mh-mime.el (mh-display-with-external-viewer):
* lisp/ps-mule.el (ps-mule-end-job):
* lisp/ps-print.el (ps-color-scale, ps-background-pages)
(ps-background-text, ps-background-image, ps-background)
(ps-begin-job, ps-print-translation-table):
* lisp/recentf.el (recentf-sort-ascending)
(recentf-sort-descending, recentf-sort-basenames-ascending)
(recentf-sort-basenames-descending)
(recentf-sort-directories-ascending)
(recentf-sort-directories-descending):
* lisp/replace.el (occur-engine-add-prefix):
* lisp/select.el (xselect--encode-string):
* lisp/server.el (server-use-tcp):
* lisp/ses.el (ses-sort-column):
* lisp/sort.el (sort-columns):
* lisp/term/ns-win.el (window-system-initialization):
* lisp/tree-widget.el (tree-widget-image-formats):
* lisp/whitespace.el (whitespace-report-region): Remove redundant #'
before lambda.
2021-10-21 21:35:07 +00:00
|
|
|
|
(lambda () (move-to-column col-start) nil)
|
|
|
|
|
(lambda () (move-to-column col-end) nil))))))))
|
1990-08-28 11:59:54 +00:00
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
|
;;;###autoload
|
1990-08-28 11:59:54 +00:00
|
|
|
|
(defun reverse-region (beg end)
|
|
|
|
|
"Reverse the order of lines in a region.
|
2020-02-15 08:47:08 +00:00
|
|
|
|
When called from Lisp, takes two point or marker arguments, BEG and END.
|
|
|
|
|
If BEG is not at the beginning of a line, the first line of those
|
|
|
|
|
to be reversed is the line starting after BEG.
|
|
|
|
|
If END is not at the end of a line, the last line to be reversed
|
|
|
|
|
is the one that ends before END."
|
1990-08-28 11:59:54 +00:00
|
|
|
|
(interactive "r")
|
|
|
|
|
(if (> beg end)
|
|
|
|
|
(let (mid) (setq mid end end beg beg mid)))
|
|
|
|
|
(save-excursion
|
2020-02-15 08:47:08 +00:00
|
|
|
|
;; Put beg at the start of a line and end and the end of one --
|
|
|
|
|
;; the largest possible region which fits this criteria.
|
1990-08-28 11:59:54 +00:00
|
|
|
|
(goto-char beg)
|
|
|
|
|
(or (bolp) (forward-line 1))
|
|
|
|
|
(setq beg (point))
|
|
|
|
|
(goto-char end)
|
2020-02-15 08:47:08 +00:00
|
|
|
|
;; The test for bolp is for those times when end is on an empty line;
|
1990-08-28 11:59:54 +00:00
|
|
|
|
;; it is probably not the case that the line should be included in the
|
|
|
|
|
;; reversal; it isn't difficult to add it afterward.
|
|
|
|
|
(or (and (eolp) (not (bolp))) (progn (forward-line -1) (end-of-line)))
|
|
|
|
|
(setq end (point-marker))
|
2020-06-18 17:59:21 +00:00
|
|
|
|
(when (<= end beg)
|
|
|
|
|
(user-error "There are no full lines in the region"))
|
2020-02-15 08:47:08 +00:00
|
|
|
|
;; The real work. This thing cranks through memory on large regions.
|
1990-08-28 11:59:54 +00:00
|
|
|
|
(let (ll (do t))
|
|
|
|
|
(while do
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(setq ll (cons (buffer-substring (point) (progn (end-of-line) (point)))
|
|
|
|
|
ll))
|
|
|
|
|
(setq do (/= (point) end))
|
|
|
|
|
(delete-region beg (if do (1+ (point)) (point))))
|
|
|
|
|
(while (cdr ll)
|
|
|
|
|
(insert (car ll) "\n")
|
|
|
|
|
(setq ll (cdr ll)))
|
|
|
|
|
(insert (car ll)))))
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
2012-12-03 23:49:08 +00:00
|
|
|
|
;;;###autoload
|
2013-05-24 18:39:21 +00:00
|
|
|
|
(defun delete-duplicate-lines (beg end &optional reverse adjacent keep-blanks
|
|
|
|
|
interactive)
|
2014-01-26 01:10:18 +00:00
|
|
|
|
"Delete all but one copy of any identical lines in the region.
|
|
|
|
|
Non-interactively, arguments BEG and END delimit the region.
|
|
|
|
|
Normally it searches forwards, keeping the first instance of
|
|
|
|
|
each identical line. If REVERSE is non-nil (interactively, with
|
Docfix: use command substitution for 'universal-argument'
* lisp/autoarg.el (autoarg-mode):
* lisp/bookmark.el (bookmark-set, bookmark-set-no-overwrite)
(bookmark-save):
* lisp/calendar/todo-mode.el (todo-insert-item)
(todo-filter-top-priorities)
(todo-filter-top-priorities-multifile):
* lisp/dired-x.el (dired-mark-extension, dired-mark-suffix):
* lisp/eshell/eshell.el (eshell):
* lisp/gnus/gnus-group.el (gnus-group-find-new-groups):
* lisp/gnus/gnus-start.el (gnus-find-new-newsgroups):
* lisp/gnus/gnus-sum.el (gnus-summary-show-article):
* lisp/gnus/gnus.el (gnus-secondary-servers):
* lisp/org/org-timer.el (org-timer-set-timer):
* lisp/org/ox.el (org-export-dispatch-last-position):
* lisp/printing.el (pr-ps-directory-preview)
(pr-ps-directory-using-ghostscript, pr-ps-directory-print)
(pr-ps-directory-ps-print, pr-ps-buffer-preview)
(pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
(pr-ps-buffer-ps-print, pr-despool-preview)
(pr-despool-using-ghostscript, pr-despool-print)
(pr-despool-ps-print, pr-ps-file-up-ps-print, pr-ps-fast-fire)
(pr-txt-fast-fire):
* lisp/progmodes/idlwave.el (idlwave-complete):
* lisp/progmodes/sh-script.el (sh-set-shell):
* lisp/replace.el (occur):
* lisp/ses.el (ses--advice-yank):
* lisp/simple.el (set-mark-command-repeat-pop):
* lisp/sort.el (delete-duplicate-lines):
* lisp/strokes.el (strokes-help):
* lisp/textmodes/artist.el (artist-mode):
* lisp/textmodes/reftex-cite.el (reftex-citation):
* lisp/textmodes/reftex-dcr.el (reftex-view-crossref):
* lisp/textmodes/reftex-index.el (reftex-index-selection-or-word)
(reftex-display-index):
* lisp/textmodes/reftex-ref.el (reftex-reference):
* lisp/textmodes/reftex-toc.el (reftex-toc):
* lisp/textmodes/reftex-vars.el (reftex-cite-prompt-optional-args)
(reftex-enable-partial-scans):
* lisp/textmodes/texnfo-upd.el (texinfo-master-menu):
* lisp/windmove.el (windmove-display-in-direction)
(windmove-delete-left, windmove-delete-up)
(windmove-delete-right, windmove-delete-down):
* lisp/window.el (recenter-window-group, recenter-other-window): Use
command substitution for 'universal-argument' instead of raw "C-u".
2021-09-16 18:05:48 +00:00
|
|
|
|
a \\[universal-argument] prefix), it searches backwards and keeps the last instance of
|
2014-01-26 01:10:18 +00:00
|
|
|
|
each repeated line.
|
|
|
|
|
|
|
|
|
|
Identical lines need not be adjacent, unless the argument
|
Docfix: use command substitution for 'universal-argument'
* lisp/autoarg.el (autoarg-mode):
* lisp/bookmark.el (bookmark-set, bookmark-set-no-overwrite)
(bookmark-save):
* lisp/calendar/todo-mode.el (todo-insert-item)
(todo-filter-top-priorities)
(todo-filter-top-priorities-multifile):
* lisp/dired-x.el (dired-mark-extension, dired-mark-suffix):
* lisp/eshell/eshell.el (eshell):
* lisp/gnus/gnus-group.el (gnus-group-find-new-groups):
* lisp/gnus/gnus-start.el (gnus-find-new-newsgroups):
* lisp/gnus/gnus-sum.el (gnus-summary-show-article):
* lisp/gnus/gnus.el (gnus-secondary-servers):
* lisp/org/org-timer.el (org-timer-set-timer):
* lisp/org/ox.el (org-export-dispatch-last-position):
* lisp/printing.el (pr-ps-directory-preview)
(pr-ps-directory-using-ghostscript, pr-ps-directory-print)
(pr-ps-directory-ps-print, pr-ps-buffer-preview)
(pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
(pr-ps-buffer-ps-print, pr-despool-preview)
(pr-despool-using-ghostscript, pr-despool-print)
(pr-despool-ps-print, pr-ps-file-up-ps-print, pr-ps-fast-fire)
(pr-txt-fast-fire):
* lisp/progmodes/idlwave.el (idlwave-complete):
* lisp/progmodes/sh-script.el (sh-set-shell):
* lisp/replace.el (occur):
* lisp/ses.el (ses--advice-yank):
* lisp/simple.el (set-mark-command-repeat-pop):
* lisp/sort.el (delete-duplicate-lines):
* lisp/strokes.el (strokes-help):
* lisp/textmodes/artist.el (artist-mode):
* lisp/textmodes/reftex-cite.el (reftex-citation):
* lisp/textmodes/reftex-dcr.el (reftex-view-crossref):
* lisp/textmodes/reftex-index.el (reftex-index-selection-or-word)
(reftex-display-index):
* lisp/textmodes/reftex-ref.el (reftex-reference):
* lisp/textmodes/reftex-toc.el (reftex-toc):
* lisp/textmodes/reftex-vars.el (reftex-cite-prompt-optional-args)
(reftex-enable-partial-scans):
* lisp/textmodes/texnfo-upd.el (texinfo-master-menu):
* lisp/windmove.el (windmove-display-in-direction)
(windmove-delete-left, windmove-delete-up)
(windmove-delete-right, windmove-delete-down):
* lisp/window.el (recenter-window-group, recenter-other-window): Use
command substitution for 'universal-argument' instead of raw "C-u".
2021-09-16 18:05:48 +00:00
|
|
|
|
ADJACENT is non-nil (interactively, with a \\[universal-argument] \\[universal-argument] prefix).
|
2014-01-26 01:10:18 +00:00
|
|
|
|
This is a more efficient mode of operation, and may be useful
|
|
|
|
|
on large regions that have already been sorted.
|
|
|
|
|
|
|
|
|
|
If the argument KEEP-BLANKS is non-nil (interactively, with a
|
Docfix: use command substitution for 'universal-argument'
* lisp/autoarg.el (autoarg-mode):
* lisp/bookmark.el (bookmark-set, bookmark-set-no-overwrite)
(bookmark-save):
* lisp/calendar/todo-mode.el (todo-insert-item)
(todo-filter-top-priorities)
(todo-filter-top-priorities-multifile):
* lisp/dired-x.el (dired-mark-extension, dired-mark-suffix):
* lisp/eshell/eshell.el (eshell):
* lisp/gnus/gnus-group.el (gnus-group-find-new-groups):
* lisp/gnus/gnus-start.el (gnus-find-new-newsgroups):
* lisp/gnus/gnus-sum.el (gnus-summary-show-article):
* lisp/gnus/gnus.el (gnus-secondary-servers):
* lisp/org/org-timer.el (org-timer-set-timer):
* lisp/org/ox.el (org-export-dispatch-last-position):
* lisp/printing.el (pr-ps-directory-preview)
(pr-ps-directory-using-ghostscript, pr-ps-directory-print)
(pr-ps-directory-ps-print, pr-ps-buffer-preview)
(pr-ps-buffer-using-ghostscript, pr-ps-buffer-print)
(pr-ps-buffer-ps-print, pr-despool-preview)
(pr-despool-using-ghostscript, pr-despool-print)
(pr-despool-ps-print, pr-ps-file-up-ps-print, pr-ps-fast-fire)
(pr-txt-fast-fire):
* lisp/progmodes/idlwave.el (idlwave-complete):
* lisp/progmodes/sh-script.el (sh-set-shell):
* lisp/replace.el (occur):
* lisp/ses.el (ses--advice-yank):
* lisp/simple.el (set-mark-command-repeat-pop):
* lisp/sort.el (delete-duplicate-lines):
* lisp/strokes.el (strokes-help):
* lisp/textmodes/artist.el (artist-mode):
* lisp/textmodes/reftex-cite.el (reftex-citation):
* lisp/textmodes/reftex-dcr.el (reftex-view-crossref):
* lisp/textmodes/reftex-index.el (reftex-index-selection-or-word)
(reftex-display-index):
* lisp/textmodes/reftex-ref.el (reftex-reference):
* lisp/textmodes/reftex-toc.el (reftex-toc):
* lisp/textmodes/reftex-vars.el (reftex-cite-prompt-optional-args)
(reftex-enable-partial-scans):
* lisp/textmodes/texnfo-upd.el (texinfo-master-menu):
* lisp/windmove.el (windmove-display-in-direction)
(windmove-delete-left, windmove-delete-up)
(windmove-delete-right, windmove-delete-down):
* lisp/window.el (recenter-window-group, recenter-other-window): Use
command substitution for 'universal-argument' instead of raw "C-u".
2021-09-16 18:05:48 +00:00
|
|
|
|
\\[universal-argument] \\[universal-argument] \\[universal-argument] prefix), it retains repeated blank lines.
|
2014-01-26 01:10:18 +00:00
|
|
|
|
|
|
|
|
|
Returns the number of deleted lines. Interactively, or if INTERACTIVE
|
|
|
|
|
is non-nil, it also prints a message describing the number of deletions."
|
2012-12-03 23:49:08 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(progn
|
|
|
|
|
(barf-if-buffer-read-only)
|
|
|
|
|
(list (region-beginning) (region-end)
|
|
|
|
|
(equal current-prefix-arg '(4))
|
|
|
|
|
(equal current-prefix-arg '(16))
|
2013-05-24 18:39:21 +00:00
|
|
|
|
(equal current-prefix-arg '(64))
|
2012-12-03 23:49:08 +00:00
|
|
|
|
t)))
|
2014-01-31 09:41:54 +00:00
|
|
|
|
(let ((lines (unless adjacent (make-hash-table :test 'equal)))
|
2016-07-14 07:55:28 +00:00
|
|
|
|
line prev-line first-line
|
2012-12-03 23:49:08 +00:00
|
|
|
|
(count 0)
|
|
|
|
|
(beg (copy-marker beg))
|
|
|
|
|
(end (copy-marker end)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (if reverse end beg))
|
|
|
|
|
(if (and reverse (bolp)) (forward-char -1))
|
|
|
|
|
(while (if reverse
|
2016-07-14 07:55:28 +00:00
|
|
|
|
(not first-line)
|
2012-12-03 23:49:08 +00:00
|
|
|
|
(and (< (point) end) (not (eobp))))
|
2016-07-14 07:55:28 +00:00
|
|
|
|
(setq first-line (and reverse (or (<= (point) beg) (bobp))))
|
2012-12-03 23:49:08 +00:00
|
|
|
|
(setq line (buffer-substring-no-properties
|
|
|
|
|
(line-beginning-position) (line-end-position)))
|
2013-05-24 18:39:21 +00:00
|
|
|
|
(if (and keep-blanks (string= "" line))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(if (if adjacent (equal line prev-line) (gethash line lines))
|
|
|
|
|
(progn
|
|
|
|
|
(delete-region (progn (forward-line 0) (point))
|
|
|
|
|
(progn (forward-line 1) (point)))
|
|
|
|
|
(if reverse (forward-line -1))
|
|
|
|
|
(setq count (1+ count)))
|
|
|
|
|
(if adjacent (setq prev-line line) (puthash line t lines))
|
|
|
|
|
(forward-line (if reverse -1 1))))))
|
2012-12-03 23:49:08 +00:00
|
|
|
|
(set-marker beg nil)
|
|
|
|
|
(set-marker end nil)
|
|
|
|
|
(when interactive
|
|
|
|
|
(message "Deleted %d %sduplicate line%s%s"
|
|
|
|
|
count
|
|
|
|
|
(if adjacent "adjacent " "")
|
|
|
|
|
(if (= count 1) "" "s")
|
|
|
|
|
(if reverse " backward" "")))
|
|
|
|
|
count))
|
|
|
|
|
|
1992-03-16 20:39:07 +00:00
|
|
|
|
(provide 'sort)
|
|
|
|
|
|
1992-05-30 21:11:25 +00:00
|
|
|
|
;;; sort.el ends here
|