summaryrefslogtreecommitdiff
path: root/old
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-21 17:19:34 +0000
committerJim Meyering <jim@meyering.net>1993-10-21 17:19:34 +0000
commitdf1e389479d422ebf9eb7a08ef3d60238776e9c9 (patch)
tree8cf589ac0041d09f57a6b347a339343a323d47e8 /old
parent193e68abd485958da7811d9fb18015d151145347 (diff)
downloadcoreutils-df1e389479d422ebf9eb7a08ef3d60238776e9c9.tar.xz
merge with 1.8c
Diffstat (limited to 'old')
-rw-r--r--old/textutils/ChangeLog36
1 files changed, 35 insertions, 1 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog
index 4de3941a0..52071e648 100644
--- a/old/textutils/ChangeLog
+++ b/old/textutils/ChangeLog
@@ -1,3 +1,37 @@
+Wed Oct 20 20:05:48 1993 Jim Meyering (meyering@comco.com)
+
+ * memchr.c (memchr): Do the 32-bit assignment only if !LONG_64_BITS.
+ In the 64-bit assignment, be careful to cast the shift operand to
+ long.
+ Abort if sizeof (unsigned long) > 8.
+
+Tue Oct 19 22:37:58 1993 Jim Meyering (meyering@comco.com)
+
+ * csplit.c: Allow repeat counts to be specified via `{*}'.
+ New option --suffix=format. Supercedes --digits option.
+ New option --abandon-null-files.
+ From Ronald F. Guilmette (rfg@netcom.com).
+
+ * csplit.1: Updated.
+ From Ronald F. Guilmette.
+
+ * csplit.c: Remove register keyword (replace with `int' in two cases).
+
+ * csplit.c: [MAX]: Macro renamed from max and moved to top of file.
+ (bytes_to_octal_digits): New static array.
+ (get_format_flags): Combine '+' and ' ' cases of switch stmt.
+ Return count if for loop terminates.
+ (get_format_width): Use `bytes_to_octal_digits' instead of just 11.
+ (get_format_prec): Make sure is_negative is defined before used.
+ (get_format_conv_type): Give a different error message if there
+ is no conversion specifier.
+ Test ISPRINT (ch) instead of `ch < '~' && ch > ' ''.
+ (max_out): Use `%%' rather than `%' in format string.
+
+Sat Oct 16 10:45:17 1993 Jim Meyering (meyering@comco.com)
+
+ * pr.c (main): When argc == 1, don't try to xmalloc (0).
+
Tue Oct 12 00:53:26 1993 Jim Meyering (meyering@comco.com)
* xwrite.c [HAVE_CONFIG_H, CONFIG_BROKETS]: Include <config.h>
@@ -725,7 +759,7 @@ Sun Aug 25 19:57:40 1991 Jim Meyering (meyering at apple-gunkies)
in parallel, each failed open results in one fewer output column.
Added POSIX -r option to suppress the message.
* pr.c: Added variables: failed_opens, ignore_failed_opens.
- These changes were based in part on work by David MacKenzie.
+ These changes were based in part on work by David MacKenzie.
Sat Aug 24 15:27:39 1991 Jim Meyering (meyering at pogo)