summaryrefslogtreecommitdiff
path: root/old
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-11-04 23:14:45 +0000
committerJim Meyering <jim@meyering.net>1999-11-04 23:14:45 +0000
commitac0c37fd788930d32f69015a5c6c272d1a084d59 (patch)
tree7133d0778252d9160071a5a88fd7b73635be5d4a /old
parent65b35a9e3675902f502f61087cac361eb78c74e1 (diff)
downloadcoreutils-ac0c37fd788930d32f69015a5c6c272d1a084d59.tar.xz
.
Diffstat (limited to 'old')
-rw-r--r--old/textutils/ChangeLog21
1 files changed, 21 insertions, 0 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog
index 757208747..3e4f78310 100644
--- a/old/textutils/ChangeLog
+++ b/old/textutils/ChangeLog
@@ -1,3 +1,24 @@
+1999-11-03 Paul Eggert <eggert@twinsun.com>
+
+ * NEWS, doc/textutils.texi:
+ Do not consider newline to be part of a line when comparing lines
+ in `sort' and `comm'. POSIX.2 requires that we consider newline,
+ but this is a bug in the spec and the bug will likely be fixed.
+ * src/comm.c (compare_files): Likewise.
+ * src/sort.c (begfield, limfield, findlines, keycompare, compare):
+ Likewise.
+ * tests/sort/Test.pm: Update tests `use-nl' and `11d' to reflect
+ this change.
+
+ * lib/linebuffer.c (readline): Do not leave room for an extra
+ byte after the newline; it's no longer needed.
+ * src/sort.c: (sortalloc, mergealloc, fillbuf, checkfp, mergefps):
+ Likewise.
+
+ * lib/memcoll.c (memcoll): The two arguments cannot be
+ adjacent any more, so remove the alloca/copy workaround for
+ that case.
+
1999-11-03 Jim Meyering <meyering@ascend.com>
Fix so that `tail -fn 2 file' works again.