blob: f1e616cbb568583f6c47490912bb30ff9a7597b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ba,v 1.4 2006/05/15 11:48:13 markd Exp $
--- lisp/sort.el.orig 2001-07-16 04:15:34.000000000 +1200
+++ lisp/sort.el
@@ -493,7 +493,7 @@ Use \\[untabify] to convert tabs to spac
;; Use the sort utility if we can; it is 4 times as fast.
;; Do not use it if there are any properties in the region,
;; since the sort utility would lose the properties.
- (let ((sort-args (list (if reverse "-rt\n" "-t\n")
+ (let ((sort-args (list (if reverse "-rt\t" "-t\t")
(concat "+0." (int-to-string col-start))
(concat "-0." (int-to-string col-end)))))
(when sort-fold-case
|