summaryrefslogtreecommitdiff
path: root/old/textutils
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-03-03 08:25:29 +0000
committerJim Meyering <jim@meyering.net>2000-03-03 08:25:29 +0000
commite219c94cdfc3d17393a7506b293d56210a047daa (patch)
tree40e91bb2523bd2156dba1e271791a96bc878c942 /old/textutils
parentfdd07a75085657a7b21e112477545ededba5aeeb (diff)
downloadcoreutils-e219c94cdfc3d17393a7506b293d56210a047daa.tar.xz
*** empty log message ***
Diffstat (limited to 'old/textutils')
-rw-r--r--old/textutils/ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog
index 0becebfd2..49d3027a4 100644
--- a/old/textutils/ChangeLog
+++ b/old/textutils/ChangeLog
@@ -1,3 +1,21 @@
+2000-03-03 Jim Meyering <meyering@lucent.com>
+
+ * src/sort.c (fillbuf): Move declaration of local, cc, into scope of
+ `while' loop where it's used.
+
+2000-03-02 Paul Eggert <eggert@set.twinsun.com>
+
+ Big performance improvement when sorting many small files,
+ building on a suggestion by Charles Randall.
+
+ * src/sort.c (fillbuf): Skip memmove if it would be a no-op,
+ as many memmove implementations are slow in that case.
+ Don't examine leftover bytes for eolchar, since they may be left
+ over from a previous file, and we want to read from this file.
+
+ (sort): At end of file, if there is more input and buffer room,
+ concatenate the next input file.
+
2000-02-29 Jim Meyering <meyering@lucent.com>
* src/join.c (make_blank): Add an explicit cast to `unsigned char *'