summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-03-15 18:10:26 +0000
committerJim Meyering <jim@meyering.net>2005-03-15 18:10:26 +0000
commit48d98ea22a0a4c84f6ce53f37447878a3a466ff8 (patch)
tree1ecefe868916a1e476859616683f008f4c84aff2
parentfd304f1e0e121f7ff61fd2dc578b92e63ea4ccc5 (diff)
downloadcoreutils-48d98ea22a0a4c84f6ce53f37447878a3a466ff8.tar.xz
*** empty log message ***
-rw-r--r--ChangeLog16
1 files changed, 15 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 17cdd7147..90a57227b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,21 @@
-2005-03-15 Corinna Vinschen <corinna@vinschen.de> (tiny change)
+2005-03-15 Jim Meyering <jim@meyering.net>
* Version 5.3.1.
+ Both `pr -0' and e.g., `pr -03' would evoke `column count too large'.
+ `pr -0' should give a better diagnostic and `pr -03' should be
+ equivalent to `pr -3'.
+ * src/pr.c (parse_column_count): Change return type to void.
+ Call error (EXIT_FAILURE, ... for an invalid string.
+ (main): Allocate space for column_count_string using malloc.
+ Accumulate all old-style column-count digits before converting.
+ When the number of columns is specified via both old-style,
+ (e.g., -3), and a long option (--columns=5), ensure that only
+ the last one specified takes effect.
+ * tests/pr/Test.pm: Add tests for the above.
+
+2005-03-15 Corinna Vinschen <corinna@vinschen.de> (tiny change)
+
* src/copy.c (copy_reg): Copy regular files in binary mode.
2005-03-14 Paul Eggert <eggert@cs.ucla.edu>