summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-09-10 20:54:47 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-09-10 20:54:47 +0000
commit96567e89fa561075f2033b062fa2881ac86b7bd1 (patch)
tree91f61ea974b98eed6d3e265cc888146b38e22a9a /ChangeLog
parent6840f212f14c99f6c27809fab592763ba963f68f (diff)
downloadcoreutils-96567e89fa561075f2033b062fa2881ac86b7bd1.tar.xz
"tail" now handles obscure POSIX 1003.2-1992 cases better.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1df4d23c4..696624036 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2004-09-10 Paul Eggert <eggert@cs.ucla.edu>
+
+ * NEWS: "tail" now handles obscure POSIX 1003.2-1992 cases better.
+ * src/tail.c (parse_obsolete_option): Renamed from
+ parse_obsolescent_option, since the options are obsolete now.
+ Remove bool *arg; just exit if there's an error. Revamp to follow
+ POSIX 1003.2-1992 more precisely, to handle cases like "tail -
+ file" and "tail -10 -- file" correctly when we are conforming to
+ the older standard.
+ (main): Adjust to this change.
+ * tests/tail/Test.pm (test_vector): minus-* requires
+ _POSIX2_VERSION=199209 now, to work correctly if there is
+ an input file. err-1 and err-3 no longer errors if there
+ is another file.
+
2004-09-09 Paul Eggert <eggert@cs.ucla.edu>
* src/test.c (usage): Document -r, -w, -x more carefully.