*** empty log message ***
[coreutils.git] / old / textutils / ChangeLog
blob977d9874f91507fbd17379acbc824d384ea2127f
1 2001-02-19  Jim Meyering  <meyering@lucent.com>
3         * src/sort.c (AUTHORS): Add Paul Eggert.
5         * src/wc.c (wc): Rename innermost `buf' to avoid shadowing warning.
6         (wc): Rename local `wc' to avoid shadowing function name.
8 2001-02-18  Paul Eggert  <eggert@twinsun.com>
10         Fix a race condition: freed storage accessed during a signal handler.
12         * src/sort.c (struct tempnode.next): Now volatile.
13         (zaptemp): Free the file name after removing it from the temp list,
14         not before, because a signal can arrive between the two actions
15         and cleanup () traverses the list.
17 2001-02-18  Paul Eggert  <eggert@twinsun.com>
19         Check for input size, and do not overallocate memory.
20         Also check for memory quotas.
22         Revamp storage management so that line tables and character data are
23         taken from the same buffer.  Line tables are now in reverse order,
24         since they grow down while the character data grow up.
26         * src/sort.c:
27         (<sys/resource.h>): Include if HAVE_SYS_RESOURCE_H.
28         (struct rlimit, getrlimit): Define a replacement if RLIMIT_DATA
29         is not defined.
30         (RLIMIT_AS): Define to RLIMIT_DATA if not defined.
31         (struct lines): Remove.
32         (struct buffer): New members nlines, line_bytes, eof.
33         Remove member newline_free; no longer needed, since the code no longer
34         runs out of line table space.
35         (SORTALLOC_MIN, SORTALLOC_DEFAULT_MIN): Remove.
36         (sort_size): Renamed from sortalloc; now applies to the sum of the
37         character data and the line table, not just the character data.
38         (MIN_SORT_SIZE, INPUT_FILE_SIZE_GUESS): New macros.
39         (linelength): remove.
40         (specify_sort_size): Don't worry about the distinction between the
41         character data and the line table; that is now the caller's
42         responsibility.
43         (default_sort_size): Return the value, instead of being executed for
44         side effect.  Return half of available memory, or 1/16 of total memory,
45         whichever is greater; except do not exceed 1/2 of quota.
46         (sort_buffer_size): New function.
47         (initbuf): New arg LINE_BYTES.  Ensure that the line array is properly
48         aligned.  Initialize the new set of struct buffer members.
49         (buffer_linelim): New function.
50         (fillbuf): Return int, not size_t, since the callers merely care
51         whether the result is nonzero.  New arg FILE so that error messages
52         can report the file name.  Keep track of eof.  Initialize the line
53         table too, taking its memory from the input buffer's memory; this
54         subsumes the old findlines function and removes the need for worrying
55         about running out of line table entries.
56         (checkfp, mergefps, sortlines, merge, sort): Adjust to the new storage
57         management regime, in particular the fact that line tables are now
58         filled in by fillbuf and are in reverse order.
59         (checkfp): Now takes char *, not const char *, since subroutines
60         require that now.  Rewrite to avoid lint and duplicate code.
61         If line length alloc calculation overflows,
62         simply allocate enough memory to hold the line.
63         (mergefps): New arg FILES, used for buffer size calculation and error
64         messages.  Rewrite to avoid lint.  Do not loop if savealloc*2
65         overflows.
66         (mergefps, merge): Zap temporary files eagerly rather than lazily;
67         this is needed because we now pass FILES to mergefps.
68         (sortlines): Args now point at end of arrays, not at beginnings.
69         (sort): Do not allocate temporary line array for sortlines;
70         instead, take the space from the same buffer.
71         (main): Adjust to sort_size and default_sort_size changes.
73 2001-02-18  Jim Meyering  <meyering@lucent.com>
75         Rename test input files to avoid conflicts on case-insensitive
76         file systems.
77         * tests/pr/2-Sf-t_notab: Rename from 2Sf-t_notab.
78         * tests/pr/2-S_f-t_notab: Rename from 2S_f-t_notab.
79         * tests/pr/W-72l17f-ll: Rename from W72l17f-ll.
80         * tests/pr/Test.pm: Update file names to reflect renamings.
81         Reported by Matthew Smith.
83 2001-01-20  Jim Meyering  <meyering@lucent.com>
85         * configure.in: Remove jm_CHECK_ALL_TYPES.
86         Now it's invoked by jm_MACROS.
88 2001-01-17  Jim Meyering  <meyering@lucent.com>
90         * src/cksum.c (main): Use PACKAGE, not GNU_PACKAGE.
91         * src/tsort.c (main): Likewise.
92         * src/sort.c (main): Likewise.
93         (usage): Convert each TAB in --help output to a sequence of 8 spaces.
95 2001-01-07  Jim Meyering  <meyering@lucent.com>
97         * src/tail.c (usage): Split a string that was longer than 2048 bytes.
99 2001-01-03  Jim Meyering  <meyering@lucent.com>
101         * src/sort.c (main): Remove embedded \n from diagnostic.
103 2001-01-02  Jim Meyering  <meyering@lucent.com>
105         * src/od.c (ulonglong_t): Define place-holder type to avoid some #if
106         directives.
107         (LONGEST_INTEGRAL_TYPE): Remove definition.
108         (MAX_INTEGRAL_TYPE_SIZE): Use ulonglong_t instead of
109         LONGEST_INTEGRAL_TYPE.
110         (print_long_long): Compile this function even on systems without
111         long long support.
112         (decode_one_format): Remove #if directive.
114         * src/od.c (decode_one_format): Guard use of print_long_long with
115         `#if HAVE_UNSIGNED_LONG_LONG'.  From Darren Salt.
116         Change all `#ifdef HAVE_UNSIGNED_LONG_LONG' to use `#if' instead.
118 2000-12-23  Jim Meyering  <meyering@lucent.com>
120         * src/sys2.h [HAVE_INTTYPES_H]: Include <inttypes.h>.
122 2000-12-19  Jim Meyering  <meyering@lucent.com>
124         * Version 2.0.11.
126 2000-12-18  Paul Eggert  <eggert@twinsun.com>
128         * NEWS, doc/textutils.texi: New "sort" option -S SIZE.
130         * src/sys2.h (UINTMAX_MAX): New macro, taken from C99.
132         * src/sort.c: Include physmem.h.
133         (SORTALLOC, mergealloc, LINEALLOC): Remove.
134         (sortalloc): Default to zero at program startup.
135         (SORTALLOC_MIN, SORTALLOC_DEFAULT_MIN): New macros.
136         (usage, main): Add support for new -S SIZE option.
137         (specify_sort_size, default_sort_size): New functions.
138         (initlines): Do not let alloc exceed limit.
139         (findlines): Likewise.
140         (checkfp, mergefps, sort): Use sortalloc to size everything
141         else, instead of relying on precomputed sizes.
143 2000-12-17  Jim Meyering  <meyering@lucent.com>
145         * doc/texinfo.tex: Update from master repository.
146         * config.sub: Likewise.
147         * config.guess: Likewise.
149 2000-12-11  Jim Meyering  <meyering@lucent.com>
151         * Version 2.0.10.
153 2000-12-07  Jim Meyering  <meyering@lucent.com>
155         * src/od.c (address_base): Declare to be static.
157 2000-12-06  Paul Eggert  <eggert@twinsun.com>
159         * src/od.c (address_base, address_pad_len): New var.
160         (output_address_fmt_string, address_fmt_buffer, address_pad): Remove.
161         (flag_pseudo_start): Now int, not long int.
162         (pseudo_offset): Now off_t, not long int.
163         (n_specs, n_specs_allocated): Now size_t, not unsigned int.
164         (format_address, format_address_none, format_address_std,
165         format_address_label): Now accepts an extra char argument (an extra
166         char to print if nonzero), and prints instead of returning a string.
167         All callers changed.
168         (bytes_per_block): Now size_t, not int.
169         (format_address_none): Do not even print the extra char argument.
170         This simplifies the callers.
171         (format_address_std, format_address_label): Print off_t ourself
172         instead of trying to use autoconfigured format.  This is faster and
173         more portable.
174         (format_address_paren): New function.
175         (dump): Remove unnecessary cast.
176         (expand_address_fmt): Remove.
177         (main): Use size_t, off_t, etc. instead of builtin types where this is
178         advisable.  Adjust to above changes.  Remove unnecessary cast.
180 2000-12-03  Jim Meyering  <meyering@lucent.com>
182         * src/tail.c (tail_file): Initialize ignore, dev, and ino members,
183         when tailing forever and the open failed.  Otherwise, we could get
184         uninitialized memory references of those fields in recheck.
185         * tests/tail-2/Makefile.am (TESTS): Add assert-2.
186         * tests/tail-2/assert-2: New file.
188         * Version 2.0.9.
190         Make od print valid addresses for offsets of 2^32 and larger, and
191         allow byte offset (-j) and byte count (-N) to be 2^32 and larger.
193         * src/od.c (MAX_ADDRESS_LENGTH): Don't hard-code as a literal.
194         Rather, define in terms of the type, off_t.
195         (string_min): Declare to be of type size_t.
196         (flag_dump_strings): Declare to be of type int.
197         (print_s_char): Declare the n_bytes parameter and the local, `i',
198         to be of type off_t.
199         (print_char): Likewise.
200         (print_s_short): Likewise.
201         (print_short): Likewise.
202         (print_int): Likewise.
203         (print_long): Likewise.
204         (print_long_long): Likewise.
205         (print_float): Likewise.
206         (print_double): Likewise.
207         (print_long_double): Likewise.
208         (dump_hexl_mode_trailer): Likewise.
209         (print_named_ascii): Likewise.
210         (print_ascii): Likewise.
211         (write_block): Likewise.
212         (print_ascii): Declare local, `print_function' with a prototype.
213         Change a few `>' comparisons to the equivalent `<' form.
214         (parse_options): Declare `tmp' to be of type uintmax_t.
215         Use xstrtoumax, not xstrtoul.
216         Fail if the specified offset if larger than OFF_T_MAX.
217         (dump_strings): Declare local `i' to be of type size_t.
218         Remove the now-unnecessary cast-to-off_t.
219         (main) [IF_LINT]: Initialize desired_width to avoid a warning.
220         Declare `tmp' to be of type uintmax_t.
221         Use xstrtoumax, not xstrtoul.
222         Fail if minimum string length is larger than SIZE_MAX.
223         Fail if specified width is larger than ULONG_MAX.
225         * src/od.c (format_address): Use off_t, not long unsigned_int as the
226         parameter type.
227         (format_address_none): Likewise.  Mark parameter as unused.
228         (format_address_std): Likewise.
229         (format_address_label): Likewise.
230         (print_ascii): Mark format string parameter as unused.
231         (write_block): Use off_t, not long unsigned_int as offset type.
232         (expand_address_fmt): New function.
233         (main): Use it to expand each address format string template.
234         Reported by Mark Nudelman, via Andreas Jaeger.
236         * src/sys2.h (OFF_T_MIN): Define here instead.
237         (OFF_T_MAX): Likewise.
238         (CHAR_BIT): Define.
240         * src/tail.c (parse_options): Use xstrtoumax to parse the byte and line
241         offset.  Give a better diagnostic when the requested offset is still
242         representable but larger than OFF_T_MAX.
243         (OFF_T_MIN): Remove definition.
244         (OFF_T_MAX): Likewise.
246 2000-12-02  Jim Meyering  <meyering@lucent.com>
248         * src/sort.c (checkfp): Rename local `buf' to avoid shadowing previous
249         declaration.
251         * src/sort.c (NONZERO): Define and use it to make the code a tiny
252         bit more readable.
254         * doc/textutils.texi (sort invocation): Clarify how -t works
255         when a sort key specifies a range of fields.  From Karl O. Pinc.
257 2000-11-26  Paul Eggert  <eggert@twinsun.com>
259         * src/od.c (skip): Use lseek instead of worrying about fseeko or fseek.
260         This should be portable, as we seek before doing any I/O.
261         (fseeko): Remove; no longer used.
263 2000-11-30  Jim Meyering  <meyering@lucent.com>
265         * src/sort.c: s/SIZE_T_MAX/SIZE_MAX/.
267 2000-11-30  Paul Eggert  <eggert@twinsun.com>
269         * src/sys2.h: Include <stdint.h> if HAVE_STDINT_H.
270         (SIZE_MAX): Renamed from SIZE_T_MAX, as C99 uses SIZE_MAX.
271         All uses changed.
273 2000-11-30  Jim Meyering  <meyering@lucent.com>
275         * src/sort.c: SIZE_MAX is not defined, so s/SIZE_MAX/SIZE_T_MAX/, and...
276         * src/sys2.h (SIZE_T_MAX): ... define.
278 2000-11-29  Paul Eggert  <eggert@twinsun.com>
280         Port GNU "sort" to hosts where sizes don't fit in "int",
281         e.g. 64-bit Solaris (sparc).
283         * src/sort.c ("human.h", "xstrtol.h"): Include.
284         (struct line): length member is now size_t, not int.
285         (struct lines): Likewise for used, alloc, limit members.
286         (struct buffer): Likewise for used, alloc, left, newline_free members.
287         (struct keyfield): Likewise for sword, schar, eword, echar members.
288         (sortalloc, mergealloc, linelength): Now size_t, not int.
290         (initbuf, fillbuf, initlines, begfield, limfield, findlines,
291         numcompare, getmonth, keycompare, compare, checkfp, mergefps,
292         sortlines, sort): Accept, return, and use size_t for sizes, not int.
294         (fillbuf, initlines, findlines, checkfp, sort): Check for overflow
295         when computing buffer sizes.
297         (begfield, limfield): Do not index past end of array.
299         (checkfp): Return a boolean, not a line number, as the line
300         number may not fit in int.  All callers changed.  Use
301         uintmax_t for line numbers, not int.
303         (sort): Don't allocate tmp until we need it (and know the right size).
305         (parse_field_count): New function.
307         (main): Use it to check for overflow in field counts.
308         "outfile" is now a pointer to const.
310 2000-11-27  Jim Meyering  <meyering@lucent.com>
312         * src/checksum.h: Don't include system.h here.
313         * src/md5.c: Include config.h, stdio.h, sys/types.h. and system.h here
314         instead.
315         * src/sha1sum.c: Likewise.
317 2000-11-18  Paul Eggert  <eggert@twinsun.com>
319         * src/pr.c (main): Do not assume EOF == -1.
320         Handle the case correctly when digits options immediately precede a
321         non-option.
323 2000-11-18  Jim Meyering  <meyering@lucent.com>
325         * doc/textutils.texi: Change GNU to @sc{gnu} in many places.
326         Update to use the Free Documentation Licence.
328         * configure, config.h.in, Makefile.in, etc.: Regenerate using the
329         very latest version (in CVS) of autoconf.
331 2000-11-17  Jim Meyering  <meyering@lucent.com>
333         * GNUmakefile (.NOTPARALLEL): New target.  Prevent unwanted parallelism.
334         Suggestion from Ulrich Drepper.
336 2000-11-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
338         * tsort.c: Include sys/types.h before system.h.
340 2000-11-16  Jim Meyering  <meyering@lucent.com>
342         * src/join.c: Declare global `tab' to be of type *unsigned* char,
343         so join works with 8-bit delimiter characters.
344         Reported by Antonio Rendas.
345         * tests/join/Test.pm (8-bit-t): New test for the above fix.
347 2000-11-13  Paul Eggert  <eggert@twinsun.com>
349         * src/sys2.h (ST_TIME_CMP_NS): Fix typo: ST_MTIM_NSEC should
350         be tested with #ifdef, not with #if.
352 2000-11-11  Jim Meyering  <meyering@lucent.com>
354         * doc/textutils.texi: More minor rewording and grammar correction.
355         From Brian Youmans.
357 2000-11-06  Paul Eggert  <eggert@twinsun.com>
359         * src/od.c (skip): st_size is not defined for directories.
361 2000-11-03  Jim Meyering  <meyering@lucent.com>
363         * tests/sha1sum/sample-vec: New file, with tests derived from
364         http://csrc.nist.gov/cryptval/shs/sha1-vectors.zip
365         * tests/sha1sum/Makefile.am (TESTS): Add sample-vec.
367 2000-10-30  Jim Meyering  <meyering@lucent.com>
369         * configure, config.h.in, Makefile.in, etc.: Regenerate using the
370         very latest version (in CVS) of autoconf.
372         * src/wc.c: Include "system.h" after wctype.h (not before)
373         to avoid a compilation error on Solaris 5.5.1 systems.
374         Reported by Vin Shelton.
376 2000-10-23  Jim Meyering  <meyering@lucent.com>
378         * Makefile.maint: Clean up version-related variables.
380         * Version 2.0.8.
382         * Makefile.am (EXTRA_DIST): Add .prev-version.
384 2000-10-22  Jim Meyering  <meyering@lucent.com>
386         * tests/Makefile.am (SUBDIRS): Add sha1sum.
387         * tests/sha1sum/basic-1: New file.
388         * configure.in (AC_OUTPUT): Add tests/sha1sum/Makefile.
390         * src/Makefile.am (bin_PROGRAMS): Add sha1sum.
391         (md5sum_SOURCES): Define.
392         (sha1sum_SOURCES): Define.
393         (noinst_HEADERS): Add checksum.h.
395         * src/md5sum.c: Factor out the differences between MD5 and SHA1,
396         and parameterize so this code may be used by both md5sum and the new
397         program, sha1sum.  Loosely based on a patch from Scott Miller.
398         * src/checksum.h: New file.
399         * src/md5.c: New file that simply defines `algorithm'.
400         * src/sha1sum.c: Likewise.
402         * man/Makefile.am (man_MANS): Add sha1sum.1.
403         * man/sha1sum.x: New file.
405         Support 8-byte integers, assuming they're printable with e.g., %lld.
406         * src/od.c: Add support for printing data as unsigned
407         long long integers.
409 2000-10-21  Jim Meyering  <meyering@lucent.com>
411         The command, `yes ''|./cat -n' would stop printing after INT_MAX lines.
412         * src/cat.c (cat): Never let `newlines' exceed 3.
414 2000-10-21  Jim Meyering  <meyering@lucent.com>
416         Prevent a counter buffer overrun when numbering lines and when
417         processing 100 billion lines (or more) of input.
418         * src/cat.c (LINE_COUNTER_BUF_LEN): Define to allow numbering as
419         many as 10^18 - 1 lines (the old limit was 10^11 - 1, and could
420         be exceeded without too much trouble).  Use this symbol rather
421         than hard-coding the constant everywhere.
422         (next_line_num): Rather than overrunning for input with more lines,
423         mark the line number by putting a `>' in the leftmost slot.
424         Patch by Jan Nieuwenhuizen.
426         * src/sort.c (SORT_OUT_OF_ORDER): Define.
427         (main): Use it instead of hard-coding the `1'.
429 2000-10-10  Jim Meyering  <meyering@lucent.com>
431         * src/sort.c (main): Use EXIT_SUCCESS rather than 0.
432         Fail when checking (-c) with more than one file argument,
433         rather than simply ignoring the extra arguments.
435 2000-09-07  Jim Meyering  <meyering@lucent.com>
437         * src/cut.c: Remove obsolete comment block.
438         (usage): Note that when using -f, lines with no delimiters are
439         also printed.
440         * doc/textutils.texi (cut invocation): Likewise.
442 2000-08-23  Jim Meyering  <meyering@lucent.com>
444         * src/md5sum.c: Include <config.h> unconditionally, to be consistent
445         with all the other programs in this directory.
446         * src/tsort.c: Likewise.
448 2000-08-19  Jim Meyering  <meyering@lucent.com>
450         * src/comm.c (writeline): Correct comments.  From Bruno Haible.
452 2000-08-11  Paul Eggert  <eggert@twinsun.com>
454         * doc/textutils.texi:
456         Portable shell scripts should specify global options before
457         key fields.
459         Move global LC_CTYPE remark to each sort option that depends
460         on LC_CTYPE.
462         sort -g depends on LC_NUMERIC.
464         Add @vindex where it's missing.
466         "radix character" -> "decimal-point character", to match Standard C
467         terminology, which is easier for most people to follow.
469         "comm" does not consider trailing newlines to be significant.
471 2000-08-10  Paul Eggert  <eggert@twinsun.com>
473         * doc/textutils.texi: Recommend against the System V syntax
474         for tr ranges, and don't use it in examples.  Use POSIX
475         classes rather than ranges, for portability.
476         * src/tr.c (usage): Don't describe System V syntax, as it
477         doesn't always work.
479         * src/sort.c (usage): Describe -d and -i in a locale-independent way.
481         * doc/Makefile.am (constants.texi): Use the C locale so that
482         [A-Z] works as expected.
484 2000-08-07  Paul Eggert  <eggert@twinsun.com>
486         * src/cut.c (cut_fields): Invoke xalloc_die instead of printing
487         our own message.
488         (cut_fields): Check for I/O error as well as end-of-file
490 2000-08-06  Bruno Haible  <haible@clisp.cons.org>
492         * src/wc.c: Add support for multi-byte locales.
493         (iswprint, mbrtowc, wcwidth): Provide default definitions.
494         (total_bytes): New variable.
495         (print_bytes): New variable.
496         (longopts): Change abbreviation for --chars from 'c' to 'm'.
497         (usage): Update.
498         (write_counts): Add `bytes' argument.
499         (wc): New variables `bytes', `count_bytes', `count_chars',
500         `count_complicated'. The old code determines `bytes', not `chars'.
501         New case for MB_CUR_MAX > 1. A non-printable non-space character does
502         not increment the line position or start a word. Update `total_bytes'.
503         (main): Initialize `print_bytes' and `total_bytes' to 0. Accept 'm'
504         option. Pass `total_bytes' to write_counts.
505         * doc/textutils.texi (wc invocation): Update accordingly.
507 2000-08-06  Bruno Haible  <haible@clisp.cons.org>
509         * src/head.c (head): Call write_header here.
510         (head_file): ... not here.
512         * src/cat.c (closeout_func): Remove variable.
513         (close_stdout_wrapper): Remove unused function.
514         (main): Remove assignment to closeout_func.
516         * src/fold.c (fold_file): Remove ferror(stdout) check, already done
517         in close_stdout.
519 2000-08-06  Paul Eggert  <eggert@twinsun.com>
521         * src/sort.c (usage): Warn more succinctly about the effects of
522         the locale on sort order.
524 2000-08-06  Jim Meyering  <meyering@lucent.com>
526         * Version 2.0g.
528         * src/tail.c (pipe_lines): Declare local `cp' to be const.
530 2000-08-04  Greg McGary  <greg@mcgary.org>
532         * src/tail.c (pipe_lines): Add variable `nbytes' so we can free
533         `tmp' immediately after read loop.  Don't process an empty file.
534         [This fixes a buffer-underrun error -- detected thanks to
535         bounded pointers -jmm]
537 2000-08-05  Jim Meyering  <meyering@lucent.com>
539         Fix buffer-overrun error.
540         * src/pr.c (init_header): Allocated buffer was sometimes too small.
541         Reported by Greg McGary (who found this bug using his
542         bounded-pointers-enabled gcc).
543         (init_header): Move declarations of several variables into the
544         inner scope where they are used.
545         * tests/pr/Test.pm (narrow-1): New test, for the above.
547         * src/csplit.c (MAX): Remove definition (It's in sys2.h).
549 2000-08-04  Jim Meyering  <meyering@lucent.com>
551         * src/sort.c (main): Rename local `t' to `tmp_dir' to avoid shadowing
552         a previous local by that name.
553         (usage): Warn that GNU sort is now locale-aware, and suggest
554         people put LC_ALL=POSIX in their environment.
556         * src/pr.c (store_columns): Remove conjunct that would dereference
557         an out-of-bounds pointer.  Reported by Greg McGary (who found this
558         bug using his bounded-pointers-enabled gcc).
560 2000-08-03  Jim Meyering  <meyering@lucent.com>
562         * tests/Makefile.am.in ($(srcdir)/$x-tests): Use -I$(srcdir), not `-I.'.
563         (Makefile.am): Likewise.  Reported by Greg McGary.
565 2000-08-01  Jim Meyering  <meyering@lucent.com>
567         * doc/textutils.texi (tr invocation): Note that ranges are not portable.
568         Update examples not to use ranges.
570 2000-07-31  Jim Meyering  <meyering@lucent.com>
572         * src/cut.c (cut_fields): Use `virtual memory exhausted',
573         not `Memory exhausted'.
575 2000-07-30  Jim Meyering  <meyering@lucent.com>
577         * src/help-version: Remove file.  Move it to ...
578         * tests/help-version: ...here
579         * tests/Makefile.am (TESTS): Set to help-version.
580         (TESTS_ENVIRONMENT): Define.
581         (EXTRA_DIST): Add $(TESTS).
582         * src/Makefile.am (EXTRA_DIST): Remove help-version.
583         (TESTS): Remove definition.
584         (TESTS_ENVIRONMENT): Remove definition.
586 2000-07-28  Paul Eggert  <eggert@twinsun.com>
588         sort's -T option can now appear multiple times.
589         Thanks to Charles Randall for suggesting this idea.
591         * doc/textutils.texi, NEWS: Document this.
593         * src/sort.c (temp_dir): Remove.
594         (temp_dirs, temp_dir_count, temp_dir_alloc): New vars.
595         (process_id): New var.
596         (usage): Describe new use of -T.
597         (add_temp_dir): New function.
598         (tempname): Use new temp_dirs array.
599         Do not discard information from the process-id or sequence
600         number, unless we have short file names.
601         (sighandle): Use process_id instead of getpid.
602         (main): Initialize process_id.
603         Add support for the new use of -T.
605 2000-07-23  Jim Meyering  <meyering@lucent.com>
607         * tests/head/Test.pm: Rename tests (and hence files) to have a short
608         enough prefix so that they're not truncated on 8+3 file systems.
609         Reported by Eli Zaretskii.
611 2000-07-09  Jim Meyering  <meyering@lucent.com>
613         * config.guess: Update from FSF.
614         * config.sub: Likewise.
616 2000-07-02  Jim Meyering  <meyering@lucent.com>
618         * Version 2.0f.
620 2000-07-01  Jim Meyering  <meyering@lucent.com>
622         * src/cut.c: Change type of global, field_1_bufsize, from int to size_t.
624 2000-06-29  Jim Meyering  <meyering@lucent.com>
626         * src/tr.c (find_bracketed_repeat): Add a cast to suppress a warning.
627         Reported by Gerhard Poul.
629         * src/tail.c (enum): Remove comma from end of enumerator list.
630         From Gerhard Poul.
632 2000-06-25  Jim Meyering  <meyering@lucent.com>
634         * configure.in (ALL_LINGUAS): Add Danish (da).
636 2000-06-24  Jim Meyering  <meyering@lucent.com>
638         * doc/textutils.texi: Lots of minor rewording and grammar correction.
639         From Brian Youmans.
641         * tests/sum/basic-1: New file.
642         * tests/sum/Makefile.am: New file.
643         * configure.in (AC_OUTPUT): Add tests/md5sum/Makefile.
644         * tests/Makefile.am (SUBDIRS): Add sum.
646 2000-06-22  Bruno Haible  <haible@clisp.cons.org>
648         * src/sum.c (sysv_sum_file): Avoid overflowing 32-bit accumulator
649         on files larger than 256 MB.
651 2000-06-22  Bruno Haible  <haible@clisp.cons.org>
653         * src/cat.c (main): Correct a comment.
655 2000-06-21  Jim Meyering  <meyering@lucent.com>
657         * src/cut.c (getstr): Remove private (and out of date) version of
658         this function.
659         (cut_fields): Adjust caller to use the just-extended one in ../lib.
660         Reported by Paul Sauer.
662 2000-06-20  Jim Meyering  <meyering@lucent.com>
664         * src/uniq.c (main): Fix off-by-argc test, so +N-style options are
665         recognized once again.  Reported by Geoff Keunning.
666         Fix typo in diagnostic: s/compare/skip/.
668 2000-05-27  Jim Meyering  <meyering@lucent.com>
670         * src/tail.c: Arrange to call close_stdout upon exit.
671         Don't close stdout explicitly.
672         (usage): Add missing backslash at end of line.
673         (write_header): Remove now-unused COMMENT parameter.
674         Update all callers.
676 2000-05-24  Jim Meyering  <meyering@lucent.com>
678         * src/head.c (head_file): Use STDIN_FILENO in place of `0'.
679         (main): Likewise.
681 2000-05-20  Jim Meyering  <meyering@lucent.com>
683         * src/cat.c: Arrange to call close_stdout upon exit.
684         Don't close stdout explicitly.  Replace uses of global constant,
685         output_desc, with uses of STDOUT_FILENO.
687         Arrange to call close_stdout upon exit.  Don't close stdout explicitly.
688         * src/cksum.c: Likewise.
689         * src/comm.c: Likewise.
690         * src/csplit.c: Likewise.
691         * src/cut.c: Likewise.
692         * src/expand.c: Likewise.
693         * src/fmt.c: Likewise.
694         * src/fold.c: Likewise.
695         * src/head.c: Likewise.
696         * src/join.c: Likewise.
697         * src/md5sum.c: Likewise.
698         * src/nl.c: Likewise.
699         * src/od.c: Likewise.
700         * src/paste.c: Likewise.
701         * src/pr.c: Likewise.
702         * src/ptx.c: Likewise.
703         * src/sort.c: Likewise. (but set exit status and file name, too)
704         * src/split.c: Likewise.
705         * src/sum.c: Likewise.
706         * src/tac.c: Likewise.
707         * src/tr.c: Likewise.
708         * src/tsort.c: Likewise.
709         * src/unexpand.c: Likewise.
710         * src/uniq.c: Likewise.
711         * src/wc.c:: Likewise.
713 2000-05-13  Jim Meyering  <meyering@lucent.com>
715         * src/help-version: Run each program successfully at least once.
717 2000-05-12  Jim Meyering  <meyering@lucent.com>
719         * src/head.c (string_to_integer): Restrict base to 10.
720         Reported by Joseph S. Myers.
721         * tests/head/Test.pm: Add a few tests for this.
723         New option: --first-only
724         * src/unexpand.c (anonymous enum) [CONVERT_FIRST_ONLY_OPTION]: Define.
725         (long_options): Add `first-only'.
726         (main): Handle new option.
728 2000-05-11  Jim Meyering  <meyering@lucent.com>
730         * tests/unexpand/basic-1: New tests.
732 2000-04-17  Bruno Haible  <haible@clisp.cons.org>
734         * src/system.h [__BEOS__]: Ignore O_BINARY and O_TEXT.
736 2000-04-16  Jim Meyering  <meyering@lucent.com>
738         * src/tail.c: Prepare to remove option: --max-consecutive-size-changes.
739         Doesn't seem useful.
740         (usage): Remove description.
741         * doc/textutils.texi (tail invocation): Remove description.
743 2000-04-12  Jim Meyering  <meyering@lucent.com>
745         * src/tail.c (usage): Tweak --help output.  Suggestions from Karl Berry.
747         Move some macros into m4/.
748         * configure.in (_GNU_SOURCE): Don't define here.
749         (AC_SYS_LARGEFILE): Don't use here.
750         (AM_C_PROTOTYPES): Don't use here.
751         * acconfig.h: Remove now-unused file.
753 2000-04-09  Jim Meyering  <meyering@lucent.com>
755         * doc/textutils.texi: Include constants.texi.
756         (tail invocation): Use `@value's instead of referring to the
757         output of `tail --help' for defaults.
758         * doc/Makefile.am (constants.texi): New rule.
759         (EXTRA_DIST): Add constants.texi.
760         (MAINTAINERCLEANFILES): Add it here, too.
761         (textutils.dvi, textutils.info): Depend on constants.texi.
763         * src/tail.c (usage): Clarify descriptions of the --max-* options.
764         From Karl Berry.
766 2000-04-03  Jim Meyering  <meyering@lucent.com>
768         * configure.in (AC_CHECK_HEADERS): Remove langinfo.h.  Now it's in m4/.
769         (AC_CHECK_FUNCS): Remove nl_langinfo.  Now it's in m4/.
771 2000-03-17  Jim Meyering  <meyering@lucent.com>
773         * configure.in (ALL_LINGUAS): Add Slovenian (sl).
775 2000-03-12  Jim Meyering  <meyering@lucent.com>
777         Merge from fileutils.
778         * src/system.h "pathmax.h": Include.
779         <sys/time.h>: Include if appropriate.
780         <time.h>: Likewise.
781         <sys/mkdev.h>: Likewise.
782         <sys/sysmacros.h>: Likewise.
783         <utime.h>: Likewise.
784         (major, minor, makedev): Define if needed.
785         (struct utimbuf): Declare if missing.
786         (ST_BLKSIZE, ST_NBLOCKS, ST_NBLOCKSIZE): Define.
788         * src/cksum.c (usage): Correct --help output.
789         Prompted by a report from Gregory Leblanc.
791 2000-03-05  Paul Eggert  <eggert@twinsun.com>
793         * src/sort.c (struct buffer.newline_free): New member.
794         (initbuf, findlines): Set it.
795         (fillbuf): Do not double the size of a full buffer to append a newline
796         unless the buffer is known to be newline free.
798 2000-03-05  Jim Meyering  <meyering@lucent.com>
800         * Version 2.0e.
802 2000-03-04  Jim Meyering  <meyering@lucent.com>
804         Don't get failed assertion for `tail -f directory'.
805         * src/tail.c: Revert most of 1999-10-20 change.  Instead, ...
806         (IS_TAILABLE_FILE_TYPE): Define to produce similar result.
807         (recheck): Use it here.
808         (tail_file): Use it here.
809         Reported by François Pinard.
811         Once we encounter a file that is not of IS_TAILABLE_FILE_TYPE,
812         marke it as such and ignore it forever after.
813         * src/tail.c (struct File_spec): New member.
814         (recheck): Initialize new member.
815         (tail_file): Likewise.
816         (tail_forever): Skip the file if it's marked as ignorable.
818 2000-03-03  Jim Meyering  <meyering@lucent.com>
820         * src/sort.c (fillbuf): Move declaration of local, cc, into scope of
821         `while' loop where it's used.
823 2000-03-02  Paul Eggert  <eggert@set.twinsun.com>
825         Big performance improvement when sorting many small files,
826         building on a suggestion by Charles Randall.
828         * src/sort.c (fillbuf): Skip memmove if it would be a no-op,
829         as many memmove implementations are slow in that case.
830         Don't examine leftover bytes for eolchar, since they may be left
831         over from a previous file, and we want to read from this file.
833         (sort): At end of file, if there is more input and buffer room,
834         concatenate the next input file.
836 2000-02-29  Jim Meyering  <meyering@lucent.com>
838         * src/join.c (make_blank): Add an explicit cast to `unsigned char *'
839         to placate HPUX's C compiler.  Reported by Bob Proulx.
841 2000-01-30  Jim Meyering  <meyering@lucent.com>
843         * Version 2.0d.
845         * Makefile.maint (my-distcheck): Depend on po-check, so I'll be warned
846         about any required changes at `make distcheck' time rather than at
847         `make alpha' time.
848         (writable-files): New target.
849         (my-distcheck): Depend on it.
850         (alpha): Likewise.
852         * po/POTFILES.in: Add these: lib/makepath.c, lib/rpmatch.c,
853         and lib/same.c
855 2000-01-29  Jim Meyering  <meyering@lucent.com>
857         * configure.in: Remove lib-check for cposix now that we use
858         m4/isc-posix.m4.
859         (jm_LIB_CHECK): Use this even though the library checks aren't
860         required for this patchage (so all three lib/Makefile.in files
861         will be the same).
863 2000-01-24  Mark Kettenis  <kettenis@gnu.org>
865         * src/tsort.c (exit_status): New variable.
866         (loop): New varibale.
867         (count_items, scan_zeroes): Change return type to int.
868         (detect_loop): Complete rewrite to correctly implement detection
869         of loops.  Also change return type to int.
870         (recurse_tree): Stop if ACTION returns non-zero.  This involves
871         changing the return type of this function and ACTION to int.
872         (walk_tree): Change return type of ACTION to int.
873         (tsort): Continue sort after a loop has been detected (and
874         broken).  Set exit_status to 1 if a loop was detected.
875         (main): Use exit_status to determine exit code.
876         * tests/tsort/basic-1: Change expected output for cycle-1 and
877         cycle-2 tests.
879 2000-01-23  Jim Meyering  <meyering@lucent.com>
881         * configure.in (AM_FUNC_STRTOD): Move to m4/.
882         (AC_SUBST(POW_LIBM)): Likewise.
884 2000-01-22  Jim Meyering  <meyering@lucent.com>
886         * src/sort.c (keycompare): Use global, hard_LC_COLLATE in place of
887         local that is sometimes undeclared.
889         * configure.in (ALL_LINGUAS): Add Brazilian Portuguese (pt_BR).
890         (AC_CHECK_HEADERS): Move these checks into m4/.
892         * src/tr.c ("xstrtol.h"): Include.
893         (Filter): Rename from PFL.
894         (non_neg_strtol): Remove function.
895         (find_bracketed_repeat): Use xstrtoul instead of non_neg_strtol.
896         (squeeze_filter, set_initialize, main): Use size_t and ssize_t in
897         place of long and int in several decls.
898         (read_and_delete, read_and_xlate): Likewise, and remove assertion.
899         * tests/tr/Test.pm: (o-rep-1, o-rep-2): New tests.
901         * src/cut.c: Correct copying notice to use GPL, per author's request.
902         * src/paste.c: Likewise.
903         (AUTHORS): Add djm.
905 1999-09-19  Bruno Haible  <haible@clisp.cons.org>
907         * src/tr.c (PFI): Return `long', not `int'.
908         (PFL): Rename from PFI now that it returns long.
909         (squeeze_filter): Declare as `long': i, nr, out_len.
911 2000-01-17  Paul Eggert  <eggert@twinsun.com>
913         Tweak sort performance.
915         * src/sort.c (hard_LC_CTYPE): Remove.
916         (keylist): Renamed from keyhead.  Now a pointer, not a
917         mostly-unused struct.  All uses changed.
918         (findlines, keycompare, CMP_WITH_IGNORE, compare, checkfp, mergefps,
919         sort): Tune and use a more consistent style for reallocation.
920         (keycompare, main): Don't worry about LC_CTYPE;
921         it's buggy with multibyte chars anyway.
922         (compare): Invoke alloca (0) after each call to keycompare,
923         not just the ones that return nonzero.  This avoids a memory
924         leak on architectures without builtin alloca that occurs
925         sometimes when a file contains all duplicate lines.
927 2000-01-17  Paul Eggert  <eggert@twinsun.com>
929         * src/csplit.c (interrupt_handler, main):
930         Don't use SA_INTERRUPT to decide whether to call sigaction, as
931         POSIX.1 doesn't require SA_INTERRUPT and some systems
932         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
933         it's been part of POSIX.1 since day 1 (in 1988).
934         * src/sort.c (sighandler, main): Likewise.
936 2000-01-16  Jim Meyering  <meyering@lucent.com>
938         * lib/Makefile.am: Merge with fileutils/lib/Makefile.am.
940         * configure.in: Remove AM_FUNC_ERROR_AT_LINE, jm_FUNC_STRFTIME,
941         AC_FUNC_VPRINTF, and AC_FUNC_ALLOCA.  Now they're in m4/.
943 2000-01-15  Jim Meyering  <meyering@lucent.com>
945         * configure.in (AC_REPLACE_FUNCS): Remove these: memcpy memset stpcpy
946         strpbrk strtol strtoul.  Now that's in m4/.
948         unexpand could infloop
949         * src/unexpand.c (TAB_STOP_SENTINEL): Define.
950         (unexpand): Use it instead of INT_MAX.
951         Declare column and pending to be `unsigned'.
952         Increment pending and column counters only if column is smaller
953         than TAB_STOP_SENTINEL.
954         * tests/Makefile.am (SUBDIRS): Add unexpand.
955         * tests/unexpand/basic-1: New tests for the above-fixed bug.
956         * configure.in (AC_OUTPUT): Add tests/unexpand/Makefile.
957         Reported by John Kodis.
959 2000-01-12  Paul Eggert  <eggert@twinsun.com>
961         * src/sort.c (fillbuf): Avoid quadratic behavior with long lines.
962         Also, stop worrying about ancient memchr bug (misbehavior when
963         size is zero), since other code doesn't worry either.
965 2000-01-11  Jim Meyering  <meyering@lucent.com>
967         Sync lib/ directories of sh-utils, and textutils.
969         * lib/Makefile.am (libfetish_a_SOURCES): Add getdate.y, posixtm.c,
970         basename.c, canon-host.c, readutmp.c, stripslash.c, xgetcwd.c,
971         xgethostname.c.
972         (noinst_HEADERS): Add getdate.h, group-member.h, posixtm.h,
973         pathmax.h, readutmp.h
975         * lib/Makefile.am: s/tu/fetish/
976         * src/Makefile.am: s/libtu/libfetish/
978 2000-01-10  Jim Meyering  <meyering@lucent.com>
980         * Version 2.0c.
982         * Makefile.maint (announcement): Include URLs for xdelta files.
983         (alpha): Use scp, not ncftp.
985         * lib/Makefile.am (noinst_HEADERS): Add nanosleep.h.
987 2000-01-08  Jim Meyering  <meyering@ascend.com>
989         * Version 2.0b.
991         More nits.
992         * src/cut.c (OUTPUT_DELIMITER_OPTION): Define this and use it
993         instead of `CHAR_MAX + n'.
994         * src/pr.c (PAGES_OPTION, COLUMNS_OPTION): Likewise.
996 2000-01-07  Jim Meyering  <meyering@ascend.com>
998         * tests/tsort/Makefile.am (TESTS_ENVIRONMENT): Add `pwd`/ prefix
999         to exported PATH value (though not strictly necessary, here).
1000         * tests/md5sum/Makefile.am: Likewise.
1002         Nits.
1003         * lib/memcasecmp.c: Use `#if' instead of `#ifdef' for `HAVE_CONFIG_H'.
1004         Capitalize all macro parameters.
1005         (memcasecmp): Ansideclify.
1006         Don't cast away `const'ness of parameters.
1007         * lib/strpbrk.c (strpbrk): Ansideclify.
1008         Use `#if' instead of `#ifdef' for `HAVE_CONFIG_H'.
1009         Suggestions from François Pinard.
1011 2000-01-06  Jim Meyering  <meyering@ascend.com>
1013         * tests/tail-2/assert: Tell the user just before sleeping for 7 seconds.
1015         * tests/tail-2/Makefile.am (TESTS): Remove fflush test.  It didn't
1016         test the losing behavior, and left a stray tail process to boot.
1018 2000-01-01  Jim Meyering  <meyering@ascend.com>
1020         * Version 2.0a.
1022         * lib/Makefile.am (lstat.c): Adapt rule to handle new parts of xstat.in.
1024 1999-12-12  Jim Meyering  <meyering@ascend.com>
1026         Move 120+ lines of stat.h-related macros from system.h (not shared)
1027         to sys2.h, which is shared between fileutils, sh-utils, textutils.
1028         * src/system.h: Move them from here...
1029         * src/sys2.h: ... to here.
1031 1999-12-09  Jim Meyering  <meyering@ascend.com>
1033         * configure.in (ALL_LINGUAS): Add Galician (gl).
1035 1999-12-06  Jim Meyering  <meyering@ascend.com>
1037         * tests/tail-2/fflush: New test for latest change.
1038         * tests/tail-2/Makefile.am (TESTS): Add fflush.
1040 1999-10-26  Marc Boucher  <marc@mbsi.ca>
1042         * src/tail.c (main): Flush stdout before switching to unbuffered mode
1043         and calling tail_forever.  Required only on Solaris2.7 -- on other
1044         systems, using setvbuf to switch to unbufferd mode does the flush.
1046 1999-11-22  Jim Meyering  <meyering@ascend.com>
1048         * lib/Makefile.am (DISTCLEANFILES): Put $(BUILT_SOURCES) here rather
1049         than in $(MAINTAINERCLEANFILES).
1051         * src/tail.c (recheck): Handle a race condition (including <dev,inode>
1052         reuse) that would lead to a failed assertion.
1053         Reported by Ken Pizzini.
1054         (tail_forever): Record errno before using it in call to `error'
1055         which might change it.
1056         (tail_file): Likewise.
1058         New test for the above.
1059         * tests/tail-2/assert: New file.
1060         * tests/tail-2/Makefile.am: New file.
1061         * tests/tail-2: New directory.
1062         * tests/Makefile.am (SUBDIRS): Add tail-2.
1063         * configure.in (AC_OUTPUT): Add tests/tail-2/Makefile.
1065 1999-11-05  Jim Meyering  <meyering@ascend.com>
1067         * src/system.h: Use HAVE_STRUCT_STAT_ST_BLKSIZE not HAVE_ST_BLKSIZE.
1069         * configure.in: Move some type/header/member tests into
1070         m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) so they are shared by all of
1071         fileutils, textutils, and sh-utils.
1073 1999-11-04  Paul Eggert  <eggert@twinsun.com>
1075         * src/sort.c (SORTALLOC): New macro.
1076         (sortalloc, mergealloc, LINEALLOC): Use it.
1077         (sortalloc, mergealloc, linelength): Now const.
1078         (sortalloc): Increase from 0.5 to 8 MB.
1079         (mergealloc): Increase from 16 to 256 kB.
1080         (LINEALLOC): Increase from 0.25 to 4 MB.
1082 1999-11-03  Paul Eggert  <eggert@twinsun.com>
1084         * NEWS, doc/textutils.texi:
1085         Do not consider newline to be part of a line when comparing lines
1086         in `sort' and `comm'.  POSIX.2 requires that we consider newline,
1087         but this is a bug in the spec and the bug will likely be fixed.
1088         * src/comm.c (compare_files): Likewise.
1089         * src/sort.c (begfield, limfield, findlines, keycompare, compare):
1090         Likewise.
1091         * tests/sort/Test.pm:  Update tests `use-nl' and `11d' to reflect
1092         this change.
1094         * lib/linebuffer.c (readline): Do not leave room for an extra
1095         byte after the newline; it's no longer needed.
1096         * src/sort.c: (sortalloc, mergealloc, fillbuf, checkfp, mergefps):
1097         Likewise.
1099         * lib/memcoll.c (memcoll): The two arguments cannot be
1100         adjacent any more, so remove the alloca/copy workaround for
1101         that case.
1103 1999-11-03  Jim Meyering  <meyering@ascend.com>
1105         Fix so that `tail -fn 2 file' works again.
1106         * src/tail.c (anonymous enum) [LONG_FOLLOW_OPTION]: Define.
1107         (long_options): Use LONG_FOLLOW_OPTION here, instead of 'f'.
1108         (main): Remove the `::' after the `f' in getopt_long string.
1109         Add `case LONG_FOLLOW_OPTION' after `case 'f':'.
1110         Based on a patch from Tim Waugh.
1112         * src/tail.c (anonymous enum) [RETRY_OPTION]: Define.
1113         [MAX_UNCHANGED_STATS_OPTION]: Likewise.
1114         [MAX_CONSECUTIVE_SIZE_CHANGES_OPTION]: Likewise.
1115         [PID_OPTION]: Likewise.
1116         (long_options): Use *_OPTION instead of CHAR_MAX + N.
1117         (main): Likewise.
1119 1999-11-02  Jim Meyering  <meyering@ascend.com>
1121         * man/help2man: Import version 1.018.
1122         * man/Makefile.maint ($(man_MANS)): Remove use of --name=... option.
1123         * man/*.x: Include one-line summary in [NAME] section.
1124         * man/Makefile.summ (cat-summary): Remove now-unused file.
1125         * man/Makefile.am (EXTRA_DIST): Remove Makefile.summ.
1126         * man/Makefile.maint: Include Makefile.summ with leading `-'.
1127         This file is shared by fileutils and sh-utils, both of which still
1128         have the file (albeit nearly empty now).
1129         Suggestion for clean-up from Akim Demaille.
1131 1999-11-01  Jim Meyering  <meyering@ascend.com>
1133         * lib/Makefile.am (MAINTAINERCLEANFILES): Set to $(BUILT_SOURCES).
1135 1999-10-20  Jim Meyering  <meyering@ascend.com>
1137         * src/tail.c (recheck): Don't refuse to tail a non-regular, non-pipe.
1138         (tail_file): Likewise.
1140 1999-10-07  Jim Meyering  <meyering@ascend.com>
1142         * configure.in (ALL_LINGUAS): Add Japanese (ja).
1144 1999-10-04  Jim Meyering  <meyering@ascend.com>
1146         * depcomp: New file, for automake's new dependency support.
1147         * missing: New version, from automake's user-dep-gen-branch.
1149 1999-09-28  Jim Meyering  <meyering@ascend.com>
1151         * src/system.h: Update from the system.h from fileutils.
1153         * lib/error.c (error_at_line): Use strerror portably here, too,
1154         just as was done in error.
1156 1999-09-02  Jim Meyering  <meyering@ascend.com>
1158         * src/cut.c: Remove xstrdup declaration.
1159         * src/sort.c: Likewise.
1160         * src/tsort.c: Likewise.
1162 1999-08-22  Jim Meyering  <meyering@ascend.com>
1164         * src/tsort.c (detect_loop): There's no loop if k->top is NULL.
1165         Niklas Edmundsson showed how to make tsort segfault.
1167         * tests/tsort/Makefile.am: Rewrite to use Fetish.pm-based framework.
1168         * tests/tsort/basic-1: New file.
1169         Add a few more tests.
1170         * tests/tsort/Test.pm: Remove.
1172         * man/help2man: Escape backslashes so tr's manual comes out right.
1173         Reported by Andreas Schwab.
1175         * src/tsort.c (usage): Correct address for bug reports.
1176         (tsort): Remove trailing `\n' in error format.
1178         * src/md5sum.c (md5_check): Remove trailing `\n' in error format.
1180         * src/sys2.h (IF_LINT): Define new macro.
1181         * src/od.c (dump): Use IF_LINT macro instead of #ifdef lint...
1182         (main): Likewise.
1183         * src/paste.c (paste_parallel): Likewise.
1184         * src/pr.c (read_line): Likewise.
1185         * src/sort.c (checkfp): Likewise.
1186         (mergefps): Likewise.
1188         * src/cksum.c (cksum): Constify a char*.
1189         * src/comm.c (writeline): Likewise.
1191         * src/uniq.c (check_file): Move declarations of local variables
1192         into the scopes where they're used.
1193         (min): Remove macro definition.
1194         (different): Use MIN, not min.
1195         (SWAP_LINES): New macro.
1196         (check_file): Use it here.
1198         * src/uniq.c (check_file): Generate each line of output earlier,
1199         when possible.  It is possible when using none of these options:
1200         --count, -repeated, --all-repeated, --unique.
1201         Based on a patch from Ian Turner.
1203 1999-08-15  Jim Meyering  <meyering@ascend.com>
1205         * src/tail.c (ENOSYS): Define to a bogus value if not already defined.
1207 1999-08-13  Eli Zaretskii  <eliz@is.elta.co.il>
1209         * src/tail.c (parse_options): Warn if --pid=PID is used and kill()
1210         returns ENOSYS (e.g. when compiled with DJGPP).
1212 1999-08-13  Jim Meyering  <meyering@ascend.com>
1214         * src/tsort.c (usage): Use consistent bug-reporting address.
1216         * tests/tsort/Test.pm: New file.
1217         * tests/tsort/Makefile.am: New file.
1218         * tests/tsort: New directory.
1219         * tests/Makefile.am (SUBDIRS): Add tsort.
1220         * configure.in (AC_OUTPUT): Add tests/tsort/Makefile.
1222 1999-08-11  Paul Eggert  <eggert@twinsun.com>
1224         * doc/textutils.texi: Document how to ignore newline during sort.
1226 1999-08-07  Jim Meyering  <meyering@ascend.com>
1228         * po/POTFILES.in: Add lots of lib/*.c files.  Remove src/system.h.
1230 1999-08-06  Jim Meyering  <meyering@ascend.com>
1232         * Version 2.0.
1234         * src/sort.c: Include file name in `write error' diagnostics.
1235         (write_bytes): Add output_file parameter and use it.  Update callers.
1236         (mergefps): Likewise.
1237         (merge): Likewise.
1238         (sort): Likewise.
1239         Reported by John Summerfield.
1241 1999-08-05  Jim Meyering  <meyering@ascend.com>
1243         * src/tail.c (Follow_mode): Remove comma at end of enumerator list.
1244         Reported by Kaveh Ghazi.
1246         * config.sub: Update from autoconf.
1247         * config.guess: Update from autoconf.
1249 1999-08-04  Jim Meyering  <meyering@ascend.com>
1251         * Version 1.22q.
1253         * configure.in: Remove inadequate getline-testing code.  md5sum would
1254         segfault on HPUX because of the getline function in their C library.
1255         Use the AM_FUNC_GETLINE test in m4/ instead.
1257 1999-08-03  Jim Meyering  <meyering@ascend.com>
1259         * src/tail.c (tail_forever): When following by name and calling recheck
1260         because of exceeding max_n_consecutive_size_changes_between_opens,
1261         `continue' so we don't fall through and (assuming the file finally grew)
1262         get the erroneous `file truncated' message.  This was hard to reproduce.
1264 1999-08-01  Jim Meyering  <meyering@ascend.com>
1266         * Version 1.22p.
1268         * configure.in (AM_C_PROTOTYPES): Move test to precede a few
1269         header tests -- merely on principle.
1271 1999-08-01  Paul Eggert  <eggert@twinsun.com>
1273         * configure.in (AC_SYS_LARGEFILE): Renamed from AC_LFS.
1275 1999-07-16  Paul Eggert  <eggert@twinsun.com>
1277         * lib/quotearg.c (quotearg_buffer):
1278         Don't quote spaces if C quoting style.
1280 1999-07-31  Jim Meyering  <meyering@ascend.com>
1282         * src/tail.c (tail_forever): Don't call kill if pid is 0.
1283         Detect when `writer_is_dead' also when the writer is some other user.
1284         From Karl Heuer.
1286         * src/tail.c (parse_options): Warn if --pid=PID is used without -f.
1288 1999-07-30  Jim Meyering  <meyering@ascend.com>
1290         * Version 1.22o.
1292         * src/tail.c: New option: --pid=PID.
1293         Include signal.h for kill prototype.
1294         (pid): New global.
1295         (long_options): Add `pid'.
1296         (usage): Describe it.
1297         (tail_forever): Implement it.
1298         (parse_options): Handle the new option and required arg.
1299         Suggestion and pseudo-code from Karl Heuer.
1301 1999-07-27  Jim Meyering  <meyering@ascend.com>
1303         * lib/linebuffer.c: Include <sys/types.h> now that linebuffer.h uses
1304         size_t.  This is required on at least SunOS4.  From Kaveh Ghazi.
1306 1999-07-26  Jim Meyering  <meyering@ascend.com>
1308         * src/sys2.h (PID_T_MAX): Define.
1310         * src/tail.c (struct File_spec) [n_stat_calls]: Remove unused member.
1312 1999-07-25  Jim Meyering  <meyering@ascend.com>
1314         * src/pr.c (usage): Remove `NEWS'-style paragraph (sorry to have
1315         let that in, translators).
1317         * Version 1.22n.
1319 1999-06-01  Volker Borchert  <bt@teknon.de>
1321         * tests/Makefile.am: Make envvar-check depend on check-recursive rather
1322         than on `check' so that its tests are performed before any real tests.
1324 1999-07-20  Jim Meyering  <meyering@ascend.com>
1326         * configure.in (AC_REPLACE_FUNCS) Remove memmove, now that it's
1327         AC_REPLACE...'d in m4/jm-macros.m4.
1329         * src/wc.c (posixly_correct): Declare global.
1330         (write_counts): Use it to select printf formats.
1331         (main): Set posixly_correct from the POSIXLY_CORRECT envvar.
1332         From Peter Moulder.
1334 1999-07-15  Jim Meyering  <meyering@ascend.com>
1336         * tests/md5sum/Makefile.am: Revert the 1999-02-15 change.
1337         * tests/md5sum/basic-1, newine-1: Add --text for each individual test.
1338         Reported by Eli Zaretskii.
1340 1999-07-12  Jim Meyering  <meyering@ascend.com>
1342         * configure.in (ALL_LINGUAS): Add Slovak (sk).
1344 1999-07-11  Jim Meyering  <meyering@ascend.com>
1346         * src/tail.c (recheck): Use assert instead of unnecessary close_fd.
1347         Remove a couple of unnecessary FIXME comments.
1349 1999-07-10  Jim Meyering  <meyering@ascend.com>
1351         * doc/textutils.texi: Document new tail options.
1353         * src/tail.c (struct File_spec) [tailable]: Rename from `missing' and
1354         document.  Change all uses and locals like was_missing to was_tailable.
1355         Invert expressions as appropriate.
1356         (reopen_inaccessible_files): Rename from allow_missing.
1357         (sleep_interval): Describe.
1358         (--allow-missing): Deprecate.
1359         (--retry): New option, equivalent to --allow-missing.
1360         (usage): Document name vs. descriptor differences.
1361         Refer to manual for descriptions of --max-unchanged-stats=N
1362         and --max-consecutive-size-changes=N.
1363         (valid_file_spec): New function.
1364         (recheck): Assert valid_file_spec.
1365         Remove dead else-if block (suggestion from Eli Zaretskii).
1366         Adjust stmts that set f->tailable -- unlike for `missing', tailable
1367         doesn't depend on errno == ENOENT.
1368         (parse_options): Give a warning if --retry is used when not following
1369         by name.
1371         * tests/join/Test.pm: New test case (but commented out) for
1372         Paul's 1999-06-01 fix.
1374 1999-07-09  Jim Meyering  <meyering@ascend.com>
1376         * configure.in (ALL_LINGUAS): Add Greek (el).
1378 1999-07-04  Jim Meyering  <meyering@ascend.com>
1380         * tests/join/Test.pm: New test case for Paul's 1999-06-03 fix.
1382 1999-07-03  Eli Zaretskii  <eliz@is.elta.co.il>
1384         * src/tail.c (struct File_spec): New member, errnum.
1385         (recheck): Record the new value of errno in f->errnum.  Don't
1386         output an error message unless the new value of errno differs from
1387         the old one.  Output a message if previously-inaccessible file
1388         becomes accessible.
1389         (tail_forever): Always recheck files whose fd is negative.  If the
1390         file cannot be fstat'ed, record the errno value in f[i].errnum.
1391         (tail_file): If the file cannot be open, record the errno value in
1392         f->errnum.  If it can be opened, initialize f->errnum to zero.  If
1393         it's a non-regular non-fifo file, initialize f->errnum to -1.
1395 1999-06-21  Jim Meyering  <meyering@ascend.com>
1397         * doc/textutils.texi: Use lower case characters in sc{} context.
1398         Reported by Eli Zaretskii.
1400 1999-06-03  Paul Eggert  <eggert@shade.twinsun.com>
1402         * src/join.c (xfields): Only <blank>s separate fields, not <space>s.
1404 1999-06-01  Paul Eggert  <eggert@twinsun.com>
1406         * lib/linebuffer.c (readline): Leave room for an extra byte
1407         after the newline; comm needs this for memcoll.
1409 1999-06-01  Paul Eggert  <eggert@twinsun.com>
1411         Add LC_COLLATE support to `join'.
1413         * doc/textutils.texi: Describe join and LC_COLLATE.
1415         * src/join.c: Add support for LC_COLLATE locale.
1416         Include hard-locale.h, linebuffer.h, memcoll.h.
1417         (struct line): New member `buf', replacing `beg' and `lim'.
1418         All uses changed.
1419         (hard_LC_COLLATE): New var.
1420         (main): Initialize it.
1421         (get_line): Use readline to read the line,
1422         instead of doing it by hand.
1423         That way, we get a buffer that we can pass to memcoll.
1424         (keycmp): Use memcoll to compare lines if hard_LC_COLLATE is nonzero.
1426 1999-05-27  Volker Borchert  <bt@teknon.de>
1428         * tests/Makefile.am: Qualify .env-warn with $(srcdir)/ prefix.
1430 1999-05-25  Paul Eggert  <eggert@twinsun.com>
1432         Add LC_COLLATE support to `comm', so that `comm' is compatible
1433         with `sort' in nontrivial locales.
1435         * doc/textutils.texi: Document locale-specific mode for comm.
1437         * lib/Makefile.am (libtu_a_SOURCES): Add hard-locale.c, memcoll.c.
1438         (noinst_HEADERS): Add hard-locale.h, memcoll.h.
1440         * src/comm.c: Include hard-locale.h, memcoll.h.
1441         (hard_LC_COLLATE): New variable.
1442         (compare_files): Use memcoll to compare if hard_LC_COLLATE.
1443         (main): Initialize hard_LC_COLLATE from locale.
1445         * src/sort.c: Include hard-locale.h, memcoll.h.
1446         (hard_LC_COLLATE, hard_LC_CTYPE, hard_LC_TIME): New variables,
1447         replacing `need_locale'.
1448         (memcoll): Move to lib/memcoll.c.
1449         (keycompare): No need to alloc (0), since our caller now does it.
1450         (compare): alloca (0) before returning.
1451         (my_setlocale): Remove; hard_locale now dows this.
1452         (main): Invoke setlocale, bindtextdomain, and textdomain before
1453         invoking anything that might print an error.
1454         Use hard_locale to determine which locales are hard.
1456         * lib/hard-locale.c, lib/hard-locale.h, lib/memcoll.c, lib/memcoll.h:
1457         New files.
1459 1999-05-25  Paul Eggert  <eggert@shade.twinsun.com>
1461         * lib/linebuffer.c (readline):
1462         Append trailing newline to line.
1463         * lib/linebuffer.h
1464         [struct linebuffer] (size): Declare to be of type size_t, not long.
1465         [struct linebuffer] (length): Likewise.
1466         * src/comm.c, (writeline): Lines now contain trailing newline.
1467         * src/uniq.c (find_field, different): Use size_t, not int, for lengths.
1468         (writeline): Lines now contain trailing newline.
1469         (check_file): Use size_t, not int, for lengths.
1470         * src/nl.c (proc_text, check_section, main): More of the same.
1472         * lib/linebuffer.h (struct linebuffer): Use size_t for sizes.
1473         src/nl.c (header_del_len, body_del_len, footer_del_len, main):
1474         Likewise.
1475         src/uniq.c (find_field, different, check_file): Likewise.
1477         * lib/linebuffer.c (readline): Silently append trailing
1478         newline if needed.  Do not bother setting buffer length to 0
1479         at EOF, since it's not part of the spec and nobody relies on
1480         it.  Do not compute the difference between unrelated pointers.
1482 1999-05-25  Paul Eggert  <eggert@twinsun.com>
1484         * src/tac.c (memrchr): Ifdef out this unused function.
1486 1999-05-25  Jim Meyering  <meyering@ascend.com>
1488         * doc/textutils.texi (Squeezing): Remove misleading square brackets
1489         from SET1 in the one-word-per-line example.
1491 1999-05-22  Jim Meyering  <meyering@ascend.com>
1493         * lib/Makefile.am (libtu_a_SOURCES): Remove memchr.c.
1494         From Ulrich Drepper.
1496         * Version 1.22m.
1498 1999-05-22  Paul Eggert  <eggert@twinsun.com>
1500         * doc/textutils.texi: Document locale-specific changes to `sort',
1501         as well as the new, POSIX-compliant definition of line comparison,
1502         and -g's more careful treatment of NaNs, infinities and zeros.
1504         * src/sort.c (general_numcompare): Put exceptional cases
1505         first, not last, to be consistent with -M.
1507 1999-05-21  Paul Eggert  <eggert@twinsun.com>
1509         * src/sort.c (strtod): Declare if STDC_HEADERS is not defined.
1510         (general_numcompare): Use strtod, not xstrtod.
1511         Do not consider partial conversions to be errors.
1512         Put -infinity at the start, and +infinity at the end;
1513         follow +infinity with NaNs (sorted by bit pattern),
1514         and finally by conversion errors.
1516 1999-05-21  Jim Meyering  <meyering@ascend.com>
1518         * tests/sort/Test.pm (11d): Reverse lines in expected output
1519         to reflect latest change.
1520         (use-nl): New test from Paul Eggert.
1522 1999-05-20  Paul Eggert  <eggert@twinsun.com>
1524         * src/sort.c: Treat the trailing newline as part of the line,
1525         as required by POSIX.2.
1527         (struct line, findlines, compare, checkfp, mergefps, sort):
1528         A line now includes its trailing newline.
1529         (findlines): Do not replace newline with NUL.
1530         (memcoll, keycompare): Work even if the data to be compared are
1531         adjacent strings; this is possible now that lines contain the
1532         trailing newline.
1533         (fillbuf): Always have an unused byte at the end of the buffer,
1534         since memcoll and keycompare want to modify a byte after the last line.
1535         (sortalloc, mergealloc): Increase by 1, for trailing byte.
1537 1999-05-20  Jim Meyering  <meyering@ascend.com>
1539         * tests/sort/Test.pm: Add test case from Paul Eggert.
1541 1999-05-20  Paul Eggert  <eggert@twinsun.com>
1543         * src/sort.c (keycompare): Ignore any length difference if the
1544         localized comparison says the strings are equal.
1546         * src/sort.c (memcoll, keycompare, compare): Handle NUL
1547         characters properly when comparing with LC_COLLATE semantics.
1548         (NLS_MEMCMP): Remove.
1549         (memcoll): Renamed from strncoll.
1550         Take separate lengths for each string.
1551         This function is now invoked only when need_locale.
1552         (keycompare): Don't copy strings when ignore and translate
1553         are both NULL.
1555 1999-05-18  Paul Eggert  <eggert@twinsun.com>
1557         * src/sort.c (MONTHTAB_CONST): Renamed from NLS_CONST; the use
1558         is also changed.  Define to const also if !HAVE_NL_LANGINFO.
1560         (usage): `,' -> `;' (English typo).
1562 1999-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
1564         * src/cat.c (main): When stdout is in binary mode, make sure all
1565         input files are also read in binary mode.
1567 1999-05-16  Jim Meyering  <meyering@ascend.com>
1569         * Version 1.22l.
1571 1999-05-11  Paul Eggert  <eggert@twinsun.com>
1573         * src/sort.c: Don't autodetect the locale of numbers and
1574         months, as this conflicts with POSIX.2 and is tricky to boot.
1576         (FLOATING_COMMA, NLS_STRNCMP, NLS_MAX_GROUPS,
1577         NLS_ONE_CHARACTER_STRING): Remove macros no longer used.
1579         (nls_grouping, nls_fraction_found, nls_month_found, nos_monthtab,
1580         nls_months_collide, nls_keyhead, us_monthtab): Remove variables no
1581         longer used.
1583         (struct nls_keyfield): Remove types no longer used.
1585         (strncoll_s2_readonly, nls_set_fraction, look_for_fraction,
1586         nls_month_is_either_locale, nls_numeric_format): Remove functions no
1587         longer used.
1589         (monthtab): Now has the role that us_monthtab had, but it's const only
1590         if ENABLE_NLS is not defined.
1592         (C_DECIMAL_POINT): Renamed from FLOATING_POINT.  All uses changed.
1593         (MONTHS_PER_YEAR): Renamed from NLS_NUM_MONTHS.  All uses changed.
1594         (struct_month_cmp): Renamed from nls_sort_month_comp.  All uses changed.
1595         Use strcmp, not strcoll, since the user doesn't care about collating
1596         here.
1598         (inittables): Read locale data into monthtab, rather than modifying a
1599         separate month table and futzing with indirection.  Do not worry about
1600         colliding months, since we no longer autodetect month locale.
1602         (fraccompare): Don't set no-longer-used variable nls_fraction_found.
1604         (getmonth): Use strncmp to compare months, since user doesn't care
1605         about collating here.  Fix bug where code incorrectly assumed that
1606         strlen (monthtab[lo].name) == strlen (monthtab[ix].name).
1608         (keycompare, main): Don't autodetect month locale.
1610         (compare): Don't use NLS_MEMCP in code that can't be executed if
1611         need_locale is false, as NLS_MEMCP is equivalent to memcmp in that
1612         case.
1614         (sort, insertkey, main): Don't autodetect numeric locale.
1616 1999-05-15  Jim Meyering  <meyering@ascend.com>
1618         * tests/join/Test.pm (trailing-sp): New test for this fix.
1619         * src/join.c (xfields): Don't interpret a trailing blank as a
1620         delimiter when e.g. -t: was specified.  From Tim Smithers.
1622 1999-05-12  Jim Meyering  <meyering@ascend.com>
1624         * tests/Makefile.am (envvar-check): Renamed from check-local.
1625         (check): Depend on envvar-check so the envvar check is performed
1626         before all other tests.  Reported by Volker Borchert.
1627         * tests/.env-warn: Use `%%' place-holder that Makefile.am rule expects,
1628         so CDPATH is mentioned in the message.  Reported by Volker Borchert.
1630 1999-05-11  Jim Meyering  <meyering@ascend.com>
1632         * src/sort.c (usage): Split the --help message into two pieces so that
1633         neither is longer than 2048.  For Irix4's cc.  Reported by Kaveh Ghazi.
1635 1999-05-09  Jim Meyering  <meyering@ascend.com>
1637         * lib/regex.c: Update from libc.
1639         * Version 1.22k.
1641         * Makefile.maint (alpha): Put the announcement in
1642         /tmp/announce-$(distdir)
1644         * tests/sort/Test.pm (neg-nls): New test.
1646 1999-05-08  Jim Meyering  <meyering@ascend.com>
1648         * src/system.h (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM,
1649         and all the *_MIN and *_MAX symbols): Remove definitions.
1650         * src/sys2.h: Put the definitions here instead (this file is shared
1651         between all three *utils packages, while system.h is not).
1653 1999-05-06  Paul Eggert  <eggert@twinsun.com>
1655         * src/sort.c (fraccompare, numcompare): Merge the NLS and
1656         non-NLS versions into a single function.
1658         (decimal_point): Now char, since we no longer convert to unsigned
1659         char.
1660         (th_sep): Now int, since we use a value out of char range to denote
1661         the absence of a thousands separator.
1662         (IS_THOUSANDS_SEP): New macro.
1663         (USE_NEW_FRAC_COMPARE): Remove.
1664         (nls_set_fraction): Arg is now char, not unsigned char.
1665         Set th_sep to CHAR_MAX + 1 if there is no thousands separator.
1666         (numcompare): Don't convert to unsigned char unless necessary.
1667         (main): Turn off decimal points and thousand separators if they
1668         are multibyte characters, as we don't support that yet.
1670 1999-05-06  Paul Eggert  <eggert@twinsun.com>
1672         * src/system.h (CHAR_MIN, CHAR_MAX): New macros.
1673         (SCHAR_MIN, SCHAR_MAX): Don't assume that char is signed.
1675 1999-05-06  Paul Eggert  <eggert@twinsun.com>
1677         * src/sort.c (numcompare): Handle comparison of two negative
1678         numbers correctly in the ENABLE_NLS case.
1680 1999-05-04  Jim Meyering  <meyering@ascend.com>
1682         * src/pr.c (usage): Break the usage message into 3 pieces instead of
1683         only 2.  The strings had grown to be longer than 2048, which evokes
1684         errors when compiling with Irix4's cc.  Reported by Kaveh Ghazi.
1686         * src/tsort.c (search_item): Use `1' instead of `+1'.  The latter
1687         elicits a syntax error from SunOS4's cc.  From Kaveh Ghazi.
1689 1999-05-03  Jim Meyering  <meyering@ascend.com>
1691         * src/ptx.c <ctype.h>: Don't include.
1692         [!STDC_HEADERS]: Remove definitions of ctype macros.
1693         Convert e.g., isspace to ISSPACE to use definitions from sys2.h.
1694         Reported by Kaveh Ghazi.
1696         * src/sys2.h (TOLOWER): Define.
1697         (TOUPPER): Define.
1698         * src/join.c (TOLOWER): Remove definition.
1699         * src/md5sum.c: (TOLOWER): Remove definition.
1701 1999-04-30  Jim Meyering  <meyering@ascend.com>
1703         * src/sort.c (usage): Document the differences between the
1704         obsolescent, +POS1[-POS2] form, and the POSIX -k option.
1706 1999-04-24  Jim Meyering  <meyering@ascend.com>
1708         * configure.in: Use AC_CANONICAL_HOST.
1710         * lib/Makefile.am (libtu_a_SOURCES): Add xstrtoumax.c
1711         (noinst_HEADERS): Remove xstrtoul.h.
1713         * src/csplit.c: Include new "xstrtol.h", not "xstrtoul.h".
1714         (struct control) [repeat]: Declare as uintmax_t, not int.
1715         (struct control) [lines_required]: Likewise.
1716         (handle_line_error): Use human_readable to print lines_required.
1717         (parse_repeat_count): Parse a uintmax_t.
1718         (parse_patterns): Parse a uintmax_t.
1720         * src/tail.c: Include new "xstrtol.h", not "xstrtoul.h".
1721         * src/od.c: Likewise.
1723         * src/head.c: Include new "xstrtol.h", not "xstrtoul.h".
1724         Change all U_LONG_LONG to uintmax_t.
1725         (head_lines): Move a couple dcls into an inner scope.
1726         (string_to_integer): Rename from string_to_ull.
1728 1999-04-19  Jim Meyering  <meyering@ascend.com>
1730         * Makefile.maint (b_host): Remove /pub suffix.
1732 1999-04-18  Jim Meyering  <meyering@ascend.com>
1734         * Version 1.22j.
1736         * Makefile.maint (my-distcheck): Use AMTAR, not TAR.
1738         * src/sort.c (usage): s/DIRECT/DIRECTORY/g
1739         Rename global: s/temp_file_prefix/temp_dir/.
1740         (NAME_MAX_IN_DIR): Rename from PATH_MAX_IN_DIR.  Use _POSIX_NAME_MAX,
1741         not _POSIX_PATH_MAX.  Guard with #if HAVE_PATHCONF rather than
1742         #if HAVE_UNISTD_H.
1743         (tempname): Wrap after 99999 only for length-impaired file systems.
1745 1999-04-17  Jim Meyering  <meyering@ascend.com>
1747         * src/tail.c (file_lines): Fix serious bug introduced with last changes.
1748         From Andreas Schwab.
1750 1999-04-15  Jim Meyering  <meyering@ascend.com>
1752         * tests/Makefile.am (EXTRA_DIST): Rename .posix-warn to .env-warn.
1753         (check-local): Warn about CDPATH in the same way
1754         we warn about POSIXLY_CORRECT, since the cp/same-file test fails at
1755         least when using bash with CDPATH set.  Reported by Mark Hewitt.
1757         * src/pr.c Add comments.
1758         (init_header): Tweak white space in Date/Time header.
1759         * tests/pr/Test.pm: Updated all tests to reflect the big
1760         1999-02-13 change.  From Roland Huebner.
1762 1999-04-12  Jim Meyering  <meyering@ascend.com>
1764         * src/cat.c (main): Declare out_dev to be of type dev_t, not `int'.
1765         Declare out_ino to be of type ino_t, not `int'.
1766         From John Bley.
1768         * src/od.c (MIN, MAX): Remove definitions.
1769         * src/sys2.h (MIN, MAX): Define here instead.
1770         Reported by John Bley.
1772 1999-04-11  Jim Meyering  <meyering@ascend.com>
1774         * Version 1.22i.
1776         * tests/pr/Test.pm (test_vector): Disable all tests while I wait for
1777         an updated suite.
1779         Fix the problem whereby `yes > k & sleep 1; tail -2c k' would infloop.
1780         * src/tail.c (COPY_TO_EOF): Define.
1781         (dump_remainder): Add parameter, n_bytes, and rewrite to use it.
1782         Update callers.
1783         (file_lines): Rename parameter.
1784         (tail_bytes): Remove obsolete comment.
1786         Fix the problem whereby `yes > k & sleep 1; tail -1 k' would infloop.
1787         * src/tail.c (dump_remainder): Move this function to precede the
1788         new use in file_lines.
1789         (tail_lines): Don't call dump_remainder here.
1790         (file_lines): Call dump_remainder here instead.
1791         Reported by Lehti Rami.
1793         * lib/readtokens.c (readtoken, readtokens): Protoize.
1795 1999-04-10  Jim Meyering  <meyering@ascend.com>
1797         * src/tail.c (xwrite): Use STDOUT_FILENO instead of literal `1'.
1799 1999-04-04  Jim Meyering  <meyering@ascend.com>
1801         * src/cat.c: Standardize --help and --version processing.
1802         * src/comm.c: Likewise.
1803         * src/csplit.c: Likewise.
1804         * src/cut.c: Likewise.
1805         * src/expand.c: Likewise.
1806         * src/fmt.c: Likewise.
1807         * src/fold.c: Likewise.
1808         * src/head.c: Likewise.
1809         * src/join.c: Likewise.
1810         * src/md5sum.c: Likewise.
1811         * src/nl.c: Likewise.
1812         * src/od.c: Likewise.
1813         * src/paste.c: Likewise.
1814         * src/pr.c: Likewise.
1815         * src/ptx.c: Likewise.
1816         * src/split.c: Likewise.
1817         * src/sum.c: Likewise.
1818         * src/tac.c: Likewise.
1819         * src/tail.c: Likewise.
1820         * src/tr.c: Likewise.
1821         * src/unexpand.c: Likewise.
1822         * src/uniq.c: Likewise.
1823         * src/wc.c: Likewise.
1825 1999-03-29  Jim Meyering  <meyering@ascend.com>
1827         * configure.in (GNU_PACKAGE): Remove related code -- now it's in
1828         the catch-all for shared autoconf code, m4/jm-macros.m4.
1829         (jm_CHECK_ALL_TYPES): Remove explicit AC_TYPE_* macros and use
1830         this instead.
1832 1999-03-26  Jim Meyering  <meyering@ascend.com>
1834         * lib/Makefile.am (libfu_a_SOURCES): Add version-etc.c.
1835         (noinst_HEADERS): Add version-etc.h.
1837 1999-03-25  Jim Meyering  <meyering@ascend.com>
1839         * src/tail.c (recheck): Factor out a block of duplicated code.
1840         Set f->size to 0 upon encountering a new file so we read it from
1841         the beginning rather than from then end of the first line or
1842         block.  Otherwise, after a log rotation, tail would omit the first
1843         line or block of the new file.  Reported by Ed Avis.
1845 1999-03-20  Jim Meyering  <meyering@ascend.com>
1847         * tests/Makefile.am (SUBDIRS): Temporarily remove pr.
1849 1999-03-13  Jim Meyering  <meyering@ascend.com>
1851         * src/tac.c: (tac_mem): `#if-0'-out this unused function.
1852         (tac_stdin_to_mem): Likewise.
1854         * doc/textutils.texi (cut invocation): Describe --output-delimiter.
1856 1999-03-12  Jim Meyering  <meyering@ascend.com>
1858         * src/sys2.h (SETVBUF): Define new macro.
1859         * src/tail.c (dump_remainder): Don't fflush stdout here.
1860         (main) [if forever]: Make stdout unbuffered, instead.
1861         Akim Demaille pointed out that when running `echo x>a; tail -f a>>a' ,
1862         the file `a' didn't grow longer than two lines.  Now it grows
1863         without bound.
1865 1999-03-07  Jim Meyering  <meyering@ascend.com>
1867         * tests/md5sum/newline-1: Test for the actual feature.
1868         With help from Eli Zaretskii.
1870         * src/pr.c (usage): Add missing \n\.
1872         The newline test would always fail on MSDOS/Windows systems --
1873         so move it to a separate file where we can test for that.
1874         * tests/md5sum/basic-1: Remove newline test.
1875         * tests/md5sum/newline-1: New file.
1876         * tests/md5sum/Makefile.am (TESTS): Add newline-1.
1877         Pointed out by Eli Zaretskii.
1879         1999-02-13  Roland Huebner  <rh@pelikan.cologne.de>
1880         * src/pr.c
1881         (main): Redefine options -s, -w to be POSIX compliant; introduce
1882         new options -J, -S, -W to disentangle -s and -w when used together
1883         with the three column options;
1884         (add_line_number): Make POSIX compliant; use default number
1885         separator TAB with single column output.
1886         (add_line_number): Make POSIX compliant; with multicolumn output
1887         now prefer `text columns of equal width' rather than a consequent
1888         use of `default n-separator TAB'.
1889         (add_line_number): Change line number cut-off from lower-oder to
1890         higher-oder digit to avoid loss of information; no consequent
1891         handling exists in different utilities and other UNIXes.
1892         (char_to_clump): Expand input text tabs to 8 spaces, if
1893         input_tab_char doesn't equal TAB (adapted to other UNIXes).
1894         (usage): Update POSIX compliant options -s, -w; add new options -J,
1895         -S, -W.
1896         (main): Update the source internal documentation.
1897         Some smaller BUGFIXES (print_sep_string, init_header, skip_to_page,
1898         reset_status, print_header).
1900         * tests/md5sum/basic-1 (backslash): Use .\foo instead of \.foo so we
1901         don't tramp on root directory in MSDOS/Windows.
1902         Suggestion from Eli Zaretskii.
1904         1999-02-15  Eli Zaretskii  <eliz@is.elta.co.il>
1906         * tests/md5sum/Makefile.am (TESTS_ENVIRONMENT): Run md5sum with the
1907         --text option (for MSDOS).
1909 1999-03-06  Jim Meyering  <meyering@ascend.com>
1911         * src/cut.c (getstr): Change type of `delim' parameter from char to int.
1912         (cut_fields): Cast to `unsigned char' before comparing.
1913         (main): Cast to `unsigned char' before assigning.
1914         From Arne Juul.
1915         * tests/cut/Test.pm: Add a test to exercise the bug.
1917         * src/ptx.c (swallow_file_in_memory): Use a `%s' format in error call,
1918         in case the argument string contains a `%'.
1919         (main): Likewise.
1920         * src/fmt.c (main): Likewise.
1921         * src/sort.c (main): Likewise.
1923         1999-02-13  Eli Zaretskii  <eliz@is.elta.co.il>
1925         * src/sys2.h [__DJGPP__]: Include <io.h> and <sys/exceptn.h>.
1927         * src/ptx.c (swallow_file_in_memory): Slurp up the whole file at
1928         once on MSDOS as well, but we have to relax the test for whether
1929         reading it succeeded.
1931 1999-03-03  Jim Meyering  <meyering@ascend.com>
1933         * src/cat.c: Include long-options.h
1934         [long_options]: Remove the "help" and "version" entries.
1935         Remove declarations of show_help and show_version.
1936         (main): Use parse_long_options, including author name(s).
1937         Remove the show_version and show_help blocks.
1938         * src/cksum.c: Likewise.
1939         * src/comm.c: Likewise.
1940         * src/csplit.c: Likewise.
1941         * src/cut.c: Likewise.
1942         * src/expand.c: Likewise.
1943         * src/fmt.c: Likewise.
1944         * src/fold.c: Likewise.
1945         * src/head.c: Likewise.
1946         * src/nl.c: Likewise.
1947         * src/od.c: Likewise.
1948         * src/paste.c: Likewise.
1949         * src/pr.c: Likewise.
1950         * src/split.c: Likewise.
1951         * src/sum.c: Likewise.
1952         * src/tac.c: Likewise.
1953         * src/tail.c: Likewise.
1954         * src/tr.c: Likewise.
1955         * src/unexpand.c: Likewise.
1956         * src/uniq.c: Likewise.
1957         * src/wc.c: Likewise.
1959         * src/ptx.c: Include long-options.h
1960         [long_options]: Remove the "help" and "version" entries.
1961         Remove declarations of show_help and show_version.
1962         (main): Remove `const' attribute from dcl of argv parameter.
1963         Call bindtextdomain and textdomain.
1964         Use parse_long_options, including author name(s).
1965         Remove the show_version and show_help blocks.
1967         * src/join.c (main): Include author name argument in call to
1968         parse_long_options.
1969         * src/md5sum.c (main): Likewise.
1970         * src/sort.c (main): Likewise.
1971         * src/tsort.c (main): Likewise.
1973 1999-02-07  Jim Meyering  <meyering@ascend.com>
1975         * Version 1.22h.
1977         * Makefile.maint (my-distcheck): Don't depend on dist, now that this
1978         is hooked up to the distcheck rule.
1979         * Makefile.am (distcheck-hook): New target and rule -- link to shared
1980         rule, my-distcheck, in Makefile.maint.
1982 1999-01-31  Jim Meyering  <meyering@ascend.com>
1984         * doc/textutils.texi: Wrap the @top node in @ifnottex instead of
1985         @ifinfo so `makeinfo --html ...' works.  From Karl Berry.
1987 1999-01-30  Jim Meyering  <meyering@ascend.com>
1989         * acconfig.h: Remove lots of `#undef's, now that we use the
1990         3-argument forms of AC_DEFINE* macros.
1992         * configure.in: Require autoconf 2.13.
1993         Use 3-argument form of AC_DEFINE*.
1995 1999-01-24  Jim Meyering  <meyering@ascend.com>
1997         * src/tac.c (DONT_UNLINK_WHILE_OPEN) [__MSDOS__ || _WIN32]: Define.
1999         * lib/quotearg.c (quotearg_n_options): Revert type of parameter `n'
2000         (and hence that of the local `n1', too) to `int' at Paul's request.
2002 1999-01-18  Akim Demaille  <demaille@inf.enst.fr>
2004         * doc/textutils.texi: Harmonization of @samp use for options.
2006 1999-01-17  Jim Meyering  <meyering@ascend.com>
2008         * Makefile.am (SUBDIRS): Add djgpp.
2009         * configure.in (AC_OUTPUT): Add djgpp/Makefile.
2010         * djgpp/: New directory.
2012         * man/Makefile.maint ($(man_MANS)): Don't remove the target (the
2013         man page) until after we've created its replacement.
2015 1999-01-16  Eli Zaretskii  <eliz@is.elta.co.il>
2017         * GNUmakefile: Add SHELL = /bin/sh.
2018         * man/GNUmakefile: Likewise.
2020 1999-01-16  Jim Meyering  <meyering@ascend.com>
2022         * acconfig.h: Remove @BOTTOM@ section.
2023         Instead, add the define and decl via m4/jm-macros.m4.
2025         * lib/argmatch.h (XARGMATCH): Define to return a value once again.
2026         (XARGCASEMATCH): Likewise.
2028         * lib/argmatch.c (EXIT_FAILURE): Define.
2029         (ARGMATCH_DIE): Provide default.
2030         (__xargmatch_internal): New function.
2031         s/rogram_name/program_name.
2032         From Akim Demaille.
2034 1999-01-14  Jim Meyering  <meyering@ascend.com>
2036         * tests/md5sum/basic-1: Use `f', not `x' as temp. file name to avoid
2037         warnings from perl5.004.
2038         Reported by Volker Borchert.
2040         * lib/long-options.c (parse_long_options): Rename `usage' parameter
2041         to avoid shadowing globally scoped function.
2043 1999-01-14  Akim Demaille  <demaille@inf.enst.fr>
2045         * acconfig.h: Add a @BOTTOM@ section.
2046         (ARGMATCH_DIE) [@BOTTOM@]: Define to usage(1).
2047         Declare usage.
2048         * src/*.c: Don't prototype usage as static.
2050 1999-01-10  Jim Meyering  <meyering@ascend.com>
2052         * Version 1.22g.
2054         All of the following new code is protected by
2055         `#if DONT_UNLINK_WHILE_OPEN'
2056         * src/tac.c (file_to_remove): New global.
2057         (fp_to_close): New global.
2058         (unlink_tempfile): New function.
2059         (record_tempfile): New function.
2060         (save_stdin): Call record_tempfile.
2061         Use SET_BINARY.
2062         (main): Use SET_BINARY and SET_BINARY2.
2063         From Eli Zaretskii.
2065 1999-01-09  Jim Meyering  <meyering@ascend.com>
2067         * tests/uniq/Test.pm: Add tests from Jochen Hein.
2068         * src/uniq.c: New option: --all-repeated (-D).
2069         (output_all_repeated) [output_mode]: New enum value.
2070         (usage): Describe it.
2071         (writeline): Test for new mode.
2072         (check_file): Likewise.
2073         Based on patches from Jochen Hein and Florin Iucha.
2074         (main): Diagnose `too many arguments'.
2076         * tests/head/Test.pm (null-1): Add test from Jochen Hein.
2078         * src/tail.c (parse_obsolescent_option): Interpret `number' as decimal.
2079         (parse_options): Likewise.
2080         Reported by Kamal Paul Nigam.
2082         * src/tail.c: New option: --max-unchanged-stats=N.
2083         New option: --max-n-consecutive-size-changes=N.
2085 1999-01-03  Jim Meyering  <meyering@ascend.com>
2087         * src/md5sum.c (usage): Remove third program_name argument -- there
2088         were only two `%s' in the format string.
2090 1999-01-02  Jim Meyering  <meyering@ascend.com>
2092         * src/tsort.c (tsort): Use a single call to error instead of two
2093         to fprintf.
2094         (main): Remove `%s: ' prefix on format string.
2096         * src/tail.c (parse_options): Use XARGMATCH in place of argmatch.
2098         * src/ptx.c (format_vals): New array.
2099         (main): Use XARGMATCH in place of argmatch.
2101         * lib/argmatch.h (XARGMATCH): Don't return a value;  instead,
2102         modify a parameter.  Add a `Die_stmt' parameter.
2103         Add parentheses.
2104         * lib/argmatch.c (__xargmatch_internal): Remove now-unused function.
2105         (argmatch_to_argument): Add `const' attribute to first parameter.
2107 1999-01-01  Jim Meyering  <meyering@ascend.com>
2109         * src/tsort.c: Move inclusion of assert.h to follow that of stdio.h.
2110         Some losing systems require this.
2111         Use STREQ macro instead of strcmp in a few places.
2113         * po/POTFILES.in: Add tsort.c.
2115         * man/Makefile.maint ($(man_MANS)): `exit 1' if any of help2man,
2116         chmod, or mv fails.  Otherwise, the failure could go unnoticed.
2118         * man/Makefile.summ: Add entries for ptx and tsort.
2120         * src/tsort.c: Include readtokens.h.
2121         (zeros): Rename global from `rr'.
2122         (getstr): Remove function.
2123         (tsort) Use readtoken instead of getstr.
2125         * lib/readtokens.c: New file.
2126         * lib/readtokens.h: New file.
2127         * lib/Makefile.am (libtu_a_SOURCES): Add readtokens.c.
2128         (noinst_HEADERS): Add readtokens.h.
2130         * man/Makefile.am (man_MANS): Add ptx.1.
2131         * man/ptx.x: New file.
2133         * src/tail.c (parse_options): Use XARGMATCH in place of argmatch.
2135         * man/Makefile.am (man_MANS): Add tsort.1.
2136         * man/tsort.x: New (essentially empty) file.
2138         * src/tsort.c: Rename globals N and R so they don't shadow locals.
2139         (tsort): Rename from `sort'.
2141         1998-11-07  Mark Kettenis  <kettenis@phys.uva.nl>
2142         * src/Makefile.am (bin_PROGRAMS): Add tsort.
2143         * src/tsort.c: New program.
2145         * lib/Makefile.am (libtu_a_SOURCES): Add quotearg.c.
2146         (noinst_HEADERS): Add quotearg.h.
2148         ============================
2149         All of the following are from:
2150         1998-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
2152         * src/system.h (SET_BINARY, SET_BINARY2, fileno, setmode): New
2153         macros.
2155         * src/cat.c (usage) [O_BINARY]: Describe -B,--binary option.
2156         (main) [O_BINARY]: binary_files, binary_output, file_open_mode:
2157         new variables.  Add --binary to long_options[].  Switch stdin and
2158         stdout to binary mode unless file contents are not important
2159         anyway.  Open files in binary mode when required.
2161         * src/cksum.c (cksum) [O_BINARY]: Read redirected stdin in binary
2162         mode.
2164         * src/expand.c (expand): Use binary I/O where appropriate.
2166         * src/head.c (head_bytes, head_lines) [O_BINARY]: Use binary I/O.
2168         * src/md5sum.c (OPENOPTS) [O_BINARY]: Use binary I/O when non-zero
2169         argument.
2170         (md5_file) [O_BINARY]: Switch redirected stdin to binary mode.
2171         (main) [O_BINARY]: Use binary reads by default on those systems
2172         which care about the difference.
2174         * src/od.c (skip, read_char, read_block) [O_BINARY]: Switch input
2175         stream to binary mode.
2177         * src/sort.c (PATH_MAX_IN_DIR) [HAVE_UNISTD_H]: New macro, for max
2178         file name characters in a given directory.
2179         (tempname): Make sure the temp file name is unique even if long
2180         file names aren't supported.
2182         * src/split.c (cwrite) [O_BINARY]: Write output in binary mode.
2183         (main) [O_BINARY]: Read input in binary mode.
2185         * src/sum.c (bsd_sum_file, sysv_sum_file) [O_BINARY]: Read input
2186         in binary mode.
2188         * src/tac.c (record_tempfile, unlink_tempfile)
2189         [DONT_UNLINK_WHILE_OPEN]: New functions, for systems where a file
2190         cannot be removed before it is closed.
2191         (save_stdin) [DONT_UNLINK_WHILE_OPEN]: Record the temporary file,
2192         to be removed before exit.
2193         (tac_file, save_stdin, main): Use binary I/O when appropriate.
2195         * src/tail.c (tail_lines, tail_bytes) [O_BINARY]: Use binary I/O
2196         when appropriate.
2198         * src/tr.c (main) [O_BINARY]: Use binary I/O when appropriate.
2200         * src/unexpand.c (unexpand): Use binary I/O where appropriate.
2202         * src/wc.c (wc): Use binary mode for input.
2204         * doc/textutil.texi: Add comments about peculiarities of Textutils
2205         operation on MS-DOS/MS-Windows.
2207 1998-12-22  Jim Meyering  <meyering@ascend.com>
2209         * configure.in (ALL_LINGUAS): Add chinese (zh).
2211 1998-12-17  Jim Meyering  <meyering@ascend.com>
2213         New options for tail:
2214         --follow=name, --follow=descriptor, --allow-missing
2215         * src/tail.c (Follow_mode): New enum.
2216         (n_live_files): New function.
2217         (tail_forever): Avoid starvation with --follow=name and a
2218         continually-growing unlinked or renamed file.
2220 1998-12-13  Jim Meyering  <meyering@ascend.com>
2222         * tests/uniq/Test.pm: New file.
2223         * tests/uniq/Makefile.am: New file.
2224         * tests/uniq: New directory.
2225         * tests/Makefile.am (SUBDIRS): Add uniq.
2226         * configure.in (AC_OUTPUT): Add tests/uniq/Makefile.
2227         From Jochen Hein.
2229         * lib/Makefile.am (lstat.c): Add rule to generate this from xstat.in.
2230         (stat.c): Likewise.
2231         (EXTRA_DIST): Add xstat.in.
2232         * lib/stat.c: Remove file.
2233         * lib/lstat.c: Remove file.
2234         * lib/xstat.in (xstat@): New file.
2236         * configure.in (ALL_LINGUAS): Add Russian (ru).
2238 1998-10-31  Jim Meyering  <meyering@ascend.com>
2240         * acconfig.h (stat): New #undef.
2242 1998-10-22  Jim Meyering  <meyering@ascend.com>
2244         * src/fold.c (usage): Add mention of --version and --help.
2245         Reported by Matej Vela <mvela@public.srce.hr>.
2247 1998-10-04  Jim Meyering  <meyering@ascend.com>
2249         * lib/fnmatch.h: New file. (unused)
2250         * lib/fnmatch.c: New file. (unused)
2251         * lib/Makefile.am (noinst_HEADERS): Add fnmatch.h.
2253 1998-10-03  Jim Meyering  <meyering@ascend.com>
2255         * man/Makefile.am: Switch to using help2man.
2256         (EXTRA_DIST): Add Makefile.summ.
2258         * man/help2man: Invoke program with --manhelp option only if
2259         --name=STRING not specified.  Otherwise, this would fail with `yes'.
2260         * man/Makefile.summ: New file.
2261         * man/Makefile.maint: Include it.
2262         * man/help2man: New file.
2263         * man/GNUmakefile: New file.
2264         * man/Makefile.maint: New file.
2265         * man/*.x: New files.
2266         * man/*.1: Remove files.
2268         * src/md5sum.c (split_3): Rename local variable, to `escaped_filename'.
2269         (main): Output the leading backslash not just when there's a newline
2270         in the file name, but also when there's a backslash.
2271         Reported by Jim Dennis.
2273         * tests/md5sum/basic-1: Add tests with filenames containing newline
2274         and backslash characters.  (for the bug fixed above)
2276         * tests/Makefile.am (EXTRA_DIST): Add Fetish.pm.
2277         * tests/Fetish.pm: New file.
2279         * tests/md5sum/basic-1: New file: rewrite of old tests to use Fetish.pm.
2280         * tests/md5sum/Test.pm: Remove file.
2281         * tests/md5sum/Makefile.am: Rewrite.
2283 1998-09-19  Jim Meyering  <meyering@ascend.com>
2285         * src/ptx.c (program_name): Declare *not* to be const.
2287 1998-08-29  Jim Meyering  <meyering@ascend.com>
2289         * src/cut.c: Don't assume ASCII.
2290         * src/pr.c: Likewise.
2291         * src/tail.c: Likewise.
2293 1998-08-15  Jim Meyering  <meyering@ascend.com>
2295         * src/pr.c (usage): Reformat.
2297         * src/ptx.c: Add braces to suppress warning about ambiguous `else'.
2298         * lib/bumpalloc.h: Likewise.
2300 1998-08-13  François Pinard  <pinard@iro.umontreal.ca>
2302         * src/ptx.c: New file.
2303         * src/Makefile.am (bin_PROGRAMS): Add ptx.
2304         * lib/bumpalloc.h, lib/diacrit.h, lib/diacrit.c: New files.
2305         * lib/Makefile.am (libtu_a_SOURCES): Add diacrit.c.
2306         (noinst_HEADERS): Add bumpalloc.h and diacrit.h.
2308 1998-08-09  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2310         * src/pr.c (long_options): Add long names for all options.
2311         (usage): Update help string.
2312         (main): Handle the special options --pages and --columns.
2314 1998-08-02  Jim Meyering  <meyering@ascend.com>
2316         * lib/linebuffer.c (readline): Return zero upon error as well as upon
2317         end of file.  From James Youngman.
2318         Ansideclify.
2320 1998-08-01  Jim Meyering  <meyering@ascend.com>
2322         * src/sort.c (my_setlocale): Guard definition within #ifdef ENABLE_NLS.
2323         From Manfred Hollstein.
2325 1998-07-30  Jim Meyering  <meyering@ascend.com>
2327         * tests/cut/Test.pm: Avoid broken pipe message for tests that fail
2328         with usage errors.
2330         * src/sort.c (usage): Add angle brackets to make `Report bugs...'
2331         message consistent with all the rest.
2333 1998-07-28  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2335         * tests/cut/Test.pm: Avoid broken pipe for 'y' and 'z' tests.
2337         * src/sort.c (NEGATION_SIGN): Renamed from NEGATIVE_SIGN to avoid
2338         clash with <langinfo.h>.  All uses changed.
2340 1998-07-26  Jim Meyering  <meyering@ascend.com>
2342         * intl/localealias.c (read_alias_file): Avoid mixing `char*' and
2343         `unsigned char*' variables.  Again for irix4.
2344         Mostly from Kaveh Ghazi.
2346         * src/join.c: Convert some char* dcls to `unsigned char*' and remove
2347         a cast -- to placate irix4's cc.
2348         * src/fmt.c (check_punctuation): Add cast to placate irix4's cc.
2349         Reported by Kaveh Ghazi.
2351         * src/md5sum.c (split_3): Add cast to placate irix4's cc.
2352         From Kaveh Ghazi.
2354 1998-07-25  Jim Meyering  <meyering@ascend.com>
2356         * Version 1.22f.
2358         * tests/cut/Test.pm: Add tests for new --output-delimiter option,
2359         as well as for NUL input delimiter (--delimiter='').
2360         * src/cut.c (cut_fields): Honor new --output-delimiter option.
2361         (main): Fix handling of --delimiter='' (-d '').  Until now, it has
2362         never worked as advertised.  I guess no one tried it.
2364         * tests/sort/Test.pm: Add two tests relating to this.
2365         * src/sort.c (main): Stat all non-`-' input file files (and fail if a
2366         stat fails) when an output file is specified by `-o' but doesn't exist.
2367         Reported by Will Edgington.
2369         * tests/sort/Test.pm: New tests of -o.
2371 1998-07-16  Jim Meyering  <meyering@ascend.com>
2373         * lib/Makefile.am (noinst_HEADERS): Add lchown.h.
2374         * lib/lchown.h: New file, just to define ENOSYS on systems that lack it.
2375         * lib/lchown.c: Include lchown.h.
2377 1998-07-04  Jim Meyering  <meyering@ascend.com>
2379         * configure.in (AM_WITH_REGEX): Remove.  Now the replacement
2380         macro, jm_WITH_REGEX, is bundled with the rest in jm_MACROS.
2381         * acconfig.h (WITH_REGEX): Remove undef.
2382         * src/csplit.c: Remove #ifdef around <regex.h> inclusion.
2383         * src/nl.c: Likewise.
2384         * src/tac.c: Likewise.
2385         * src/csplit.c (extract_regexp): Remove #if !WITH_REGEX...#endif block.
2386         * lib/Makefile.am (noinst_HEADERS): Remove rx.h.
2387         * lib/rx.c: Remove file.
2388         * lib/rx.h: Remove file.
2390 1998-06-29  Jim Meyering  <meyering@ascend.com>
2392         * src/wc.c: Update calls to human_readable -- now there's one fewer arg.
2394         * lib/Makefile.am (libtu_a_SOURCES): Add argmatch.c.
2395         (noinst_HEADERS): Add argmatch.h.
2397 1998-06-28  Jim Meyering  <meyering@ascend.com>
2399         * src/sys2.h: Add macro definitions for GNU libc *_unlocked wrappers.
2401 1998-06-27  Jim Meyering  <meyering@ascend.com>
2403         * tests/pr/Test.pm: Add two tests for double spacing.
2404         * src/pr.c (print_page): If cols_ready_to_print is zero,
2405         break out of loop just before the double-space test.
2406         Reported by Michael Stutz.
2408 1998-06-18  Jim Meyering  <meyering@ascend.com>
2410         * tests/Makefile.am.in (check): Depend on $(maint_gen) so
2411         `make maintainer-clean; ./configure; make check' works.
2413 1998-05-25  Jim Meyering  <meyering@ascend.com>
2415         * configure.in (_GNU_SOURCE): AC_DEFINE it here.
2416         * acconfig.h (_GNU_SOURCE): Remove definition from @TOP@ section.
2417         [!_GNU_SOURCE]: Add #undef instead.
2419 1998-05-16  Jim Meyering  <meyering@ascend.com>
2421         * configure.in (jm_MACROS): New wrapper macro.
2422         Remove uses of most jm_* macros.
2424         * src/tac.c (tac_seekable): Fix error in handling regex separators.
2425         * tests/tac/Test.pm (opt-b, opt-s, opt_sb, opt_r): New tests.
2426         (opt_br): New test -- exercises above-fixed bug.
2428         * lib/Makefile.am (EXTRA_DIST): Remove.  Automake groks the `LIBOBJS='
2429         lines from the m4/*.m4 macros, so the hack of including some
2430         custom-replaced C source file names here is no longer needed.
2432         * acconfig.h (chown): Add undef.
2433         (D_INO_IN_DIRENT): Likewise.
2434         (D_TYPE_IN_DIRENT): Likewise.
2435         (ssize_t): Likewise.
2437 1998-05-09  Jim Meyering  <meyering@ascend.com>
2439         * src/tac.c (tac_seekable): Rename from tac_stream.
2440         Change `FILE *in' parameter to `int input_fd'.  Adjust callers.
2442 1998-05-03  Jim Meyering  <meyering@ascend.com>
2444         * po/: Update from gettext-0.10.35.
2445         * intl/: Likewise.
2446         * configure.in: Remove use of AC_LINK_FILES.
2447         (AC_OUTPUT): Remove po/Makefile-generating sed command.
2449 1998-04-26  Jim Meyering  <meyering@ascend.com>
2451         * tests/tail/Test.pm: Disable test f-1, now that it fails.
2453         * src/sort.c (keycompare) (CMP_WITH_IGNORE): Don't return 0 from inside
2454         the keyspec-iterating loop.  With this change, test 22a passes.
2455         Reported by Zvi Har'El.
2456         (strncoll): Remove bogus assertion.
2457         * tests/sort/Test.pm: Add tests for the above fix.
2459         * configure.in: Use jm_ASSERT.
2460         * acconfig.h: Add NDEBUG.
2462         * src/cut.c: Don't define NDEBUG.
2463         * src/csplit.c: Likewise.
2464         * src/join.c: Likewise.
2465         * src/sort.c: Likewise.
2466         * src/tr.c: Likewise.
2468         * src/cut.c: Don't define _GNU_SOURCE (now it's in config.h).
2469         * src/expand.c: Likewise.
2470         * src/fold.c: Likewise.
2471         * src/join.c: Likewise.
2472         * src/sort.c: Likewise.
2473         * src/tr.c: Likewise.
2474         * src/unexpand.c: Likewise.
2475         * src/uniq.c: Likewise.
2477         * src/tail.c (close_fd): New function -- converted from macro.
2478         [struct File_spec] (n_stat_calls): New member.
2479         [struct File_spec] (n_unchanged_stats): New member.
2480         (max_n_unchanged_stats): New global.
2481         Initialize new members.
2482         (xwrite): New function -- converted from macro.
2483         [struct File_spec] (pretty_name): Remove member.
2484         (pretty_name): New function.
2486         * src/md5sum.c (md5_check): Declare local, `md5num' as _unsigned_ char*.
2487         (hex_digits): Declare parameter `s' as _unsigned_ char*.
2488         (split_3): Declare parameter `u' as _unsigned_ char**.
2490 1998-04-17  Jim Meyering  <meyering@ascend.com>
2492         * src/fmt.c (check_punctuation): Used unsigned char* pointers to avoid
2493         new warning.
2494         * src/join.c (xfields): Likewise.
2496 1998-04-12  Jim Meyering  <meyering@ascend.com>
2498         * src/cat.c: Use STREQ macro rather than strcmp.
2499         * src/cksum.c: Likewise.
2500         * src/comm.c: Likewise.
2501         * src/csplit.c: Likewise.
2502         * src/cut.c: Likewise.
2503         * src/fmt.c: Likewise.
2504         * src/fold.c: Likewise.
2505         * src/head.c: Likewise.
2506         * src/join.c: Likewise.
2507         * src/md5sum.c: Likewise.
2508         * src/nl.c: Likewise.
2509         * src/paste.c: Likewise.
2510         * src/pr.c: Likewise.
2511         * src/split.c: Likewise.
2512         * src/sum.c: Likewise.
2513         * src/tac.c: Likewise.
2514         * src/uniq.c: Likewise.
2515         * src/wc.c: Likewise.
2517 1998-04-11  Jim Meyering  <meyering@ascend.com>
2519         * lib/safe-read.h: New file.
2520         * lib/safe-read.c: Include it.
2521         * src/cat.c: Include it instead of merely declaring safe_read.
2522         * src/csplit.c: Likewise.
2523         * src/head.c: Likewise.
2524         * src/split.c: Likewise.
2525         * src/sum.c: Likewise.
2526         * src/tac.c: Likewise.
2527         * src/tail.c: Likewise.
2528         * src/tr.c: Likewise.
2529         * src/wc.c: Likewise.
2531         * lib/Makefile.am (noinst_HEADERS): Add safe-read.h.
2533         * src/wc.c [HAVE_INTTYPES_H]: Include inttypes.h.
2534         Declare counters to be of type uintmax_t.
2535         (write_counts): Use human_readable to format potentially-long-long
2536         numbers.  Suggestion from Rogier Wolff.
2537         (wc): Declare per-file counters to be of type uintmax_t.
2538         Declare bytes_read to be ssize_t.
2539         * lib/Makefile.am (libtu_a_SOURCES): Add human.c.
2540         (noinst_HEADERS): Add human.h.
2542         * lib/human.c: New file.
2543         * lib/human.h: New file.
2545 1998-04-04  Jim Meyering  <meyering@eng.ascend.com>
2547         * configure.in (jm_AC_HEADER_INTTYPES_H): Use it.
2548         (jm_AC_TYPE_UINTMAX_T): Use it.
2549         (jm_PREREQ): Use it.
2551         * Makefile.am (ACLOCAL_AMFLAGS): Define this, so automake/aclocal
2552         know about the m4/ subdirectory.
2553         * Makefile.maint (aclocal-files): Remove now-unnecessary (with
2554         automake-1.2h and the above change) aclocal-related rules and includes.
2556 1998-04-03  Jim Meyering  <meyering@eng.ascend.com>
2558         * lib/closeout.c: New file.
2559         * lib/closeout.h: New file.
2560         * lib/Makefile.am (libtu_a_SOURCES): Add closeout.c.
2561         (noinst_HEADERS): Add closeout.h.
2563 1998-03-31  Jim Meyering  <meyering@eng.ascend.com>
2565         * lib/xstrtol.c: Merge with the version from fileutils.
2567 1998-03-27  Jim Meyering  <meyering@eng.ascend.com>
2569         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.2h.
2571 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
2573         * acconfig.h: Remove HAVE_INTTYPES_H, now that m4/inttypes_h.m4
2574         automatically handles it.
2576 1998-03-19  Jim Meyering  <meyering@eng.ascend.com>
2578         * src/system.h (SCHAR_MIN): Define.
2579         (SHRT_MIN): Define.
2580         od.c needs these when compiling with NCR's R2.0c C compiler.
2581         (TYPE_MAXIMUM): Cast result to `(t)' so this macro works with
2582         `unsigned char'.
2583         From Greg Wooledge.
2585 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
2587         * src/tail.c (tail_file): Merge largely-duplicated blocks of code.
2589 1998-03-03  Paul Eggert  <eggert@twinsun.com>
2591         * src/sort.c (xtmpfopen): Open temporary file exclusively, to
2592         foil a common denial-of-service attack.
2593         * src/tac.c (save_stdin): Likewise.
2595 1998-02-16  Jim Meyering  <meyering@eng.ascend.com>
2597         * configure.in (jm_FUNC_LSTAT): Use it.
2598         (jm_FUNC_STAT): Use it.
2599         * lib/Makefile.am (EXTRA_DIST): Add lstat.c and stat.c.
2601 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
2603         * configure.in: Don't use AM_MAINTAINER_MODE or
2604         AC_PATH_PROG(PERL, perl).
2605         (jm_PERL): Use this.
2607 1998-02-04  Jim Meyering  <meyering@eng.ascend.com>
2609         * tests/Makefile.am.in (EXTRA_DIST): Remove mk-script.pl.
2610         (mk_script): Set to ../mk-script.
2611         (x-tests): Use `$(PERL) -w -- $(mk_script)', not ./mk-script.
2612         Remove @MAINT@ cruft.
2613         (Makefile.am): Likewise.
2614         Remove @MAINT@ cruft.  Now `missing' will explain the failure
2615         when people don't have Perl yet modify a file whose rebuilding
2616         would lead to the use of Perl.
2618         * tests/Makefile.am (EXTRA_DIST): Add mk-script.
2619         * tests/*/mk-script.pl: Remove files.
2621         * GNUmakefile: New file.
2622         * Makefile.am (EXTRA_DIST): Add GNUmakefile.
2623         Don't include Makefile.maint from here.  It's included from GNUmakefile.
2625 1998-01-30  Paul Eggert  <eggert@twinsun.com>
2627         * configure.in (AC_LFS): Put before anything that can affect or use
2628         CPPFLAGS, LDFLAGS, or LIBS.
2630 1998-01-25  Jim Meyering  <meyering@na-net.ornl.gov>
2632         * Makefile.maint: New file.
2633         * Makefile.am: Move rules common to textutils, fileutils, sh-utils
2634         into Makefile.maint.
2635         Include Makefile.maint.
2636         (EXTRA_DIST): Add Makefile.maint.
2638         * src/cat.c (cat): Convert comma-expressions to pairs of
2639         semicolon-terminated stmts.
2640         Add braces around compound if/else stmts.
2642 1998-01-24  Jim Meyering  <meyering@na-net.ornl.gov>
2644         * src/tail.c (parse_obsolescent_option): Do not interpret `-f -n 1 ...'
2645         as obsolescent options.
2646         Accept new option: --sleep-interval=SECONDS (-s).
2647         (parse_options): Recognize it.
2648         (usage): Describe it.
2649         (tail_forever): Use it.
2650         (dump_remainder): Use it.
2651         * tests/tail/Test.pm (f-1): Add test for option-processing of `-f -n 1'.
2653         * tests/cut/: Rename directory to remove `-test' suffix.
2654         * tests/join/: Likewise.
2655         * tests/md5sum/: Likewise.
2656         * tests/pr/: Likewise.
2657         * tests/sort/: Likewise.
2658         * tests/tr/: Likewise.
2659         * configure.in (AC_OUTPUT): Reflect renamings in tests/.
2660         * tests/Makefile.am (SUBDIRS): Reflect renamings in tests/.
2662         * src/system.h (TYPE_MINIMUM): Add extra outer cast to work around
2663         bug in Cray C 5.0.3.0 when T == time_t.
2665 1998-01-18  Jim Meyering  <meyering@na-net.ornl.gov>
2667         * src/sort.c (strncoll, strncoll_s2_readonly, look_for_fraction,
2668         numcompare): Remove the `unsigned' from some `unsigned char*'
2669         parameter types.  Add casts via UCHAR where necessary to avoid
2670         problems with unwanted sign extension.  Based on a patch from
2671         Kaveh Ghazi to appease Irix4's cc compiler.
2673 1998-01-17  Jim Meyering  <meyering@na-net.ornl.gov>
2675         * src/split.c (next_file_name): Rewrite.  This removes an artificial
2676         limit (albeit already high, at INT_MAX :-) on the number of files
2677         split could create.  Reported by Ralf W. Stephan.
2679 1998-01-16  Jim Meyering  <meyering@na-net.ornl.gov>
2681         * src/sort.c: (mergefps): Add braces to avoid ambiguous `else' stmt.
2682         (nls_set_fraction): Likewise.
2684         * src/sort.c: Guard inclusion of langinfo.h also with HAVE_LANGINFO_H,
2685         for Irix-4.0.5.  From Kaveh Ghazi.
2686         * configure.in: Check for langinfo.h.
2688         * lib/getline.c: Make PARAMS-defining conditionals consistent.
2689         * lib/linebuffer.h: Likewise.
2690         * lib/long-options.h: Likewise.
2691         * lib/memcasecmp.h: Likewise.
2692         * lib/xstrtod.h: Likewise.
2693         * lib/xstrtol.h: Likewise.
2694         Suggestion from Kaveh Ghazi.
2696         * tests/head/Test.pm (fail-0): Disable test.  It depends on
2697         sizeof(long) being 32 bits.  Reported by Kaveh Ghazi.
2699 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
2701         * Version 1.22d.
2703         * src/system.h [HAVE_LIMITS_H]: Include limits.h
2704         (TYPE_SIGNED): Define.
2705         (TYPE_MINIMUM): Define.
2706         (TYPE_MAXIMUM): Define.
2707         (CHAR_BIT): Define.
2708         (SCHAR_MAX): Define.
2709         (UCHAR_MAX): Define.
2710         (SHRT_MAX): Define.
2711         (INT_MAX): Define.
2712         (UINT_MAX): Define.
2713         (LONG_MAX): Define.
2714         (ULONG_MAX): Define.
2715         * src/*.c: Remove definitions of those symbols.
2717         * src/csplit.c: Move inclusion of regex.h/rx.h to follow system.h
2718         since it now includes limit.h which defines RE_DUP_MAX.
2719         * src/nl.c: Likewise.
2720         * src/tac.c: Likewise.
2722         * lib/xstrtol.c (bkm_scale): Renamed from BKM_SCALE.
2723         Rewrite macro as function.  Return a value.  Update caller.
2724         Cast __ZLONG_MAX `__unsigned long int' before casting to double to
2725         avoid SunOS /bin/cc compiler bug.
2727 1998-01-08  Jim Meyering  <meyering@na-net.ornl.gov>
2729         * src/tac-pipe.c: New file.  But not yet used.
2730         * src/Makefile.am (EXTRA_DIST): Add tac-pipe.c.
2732         * src/tac.c (tac_stream): Don't perform arithmetic on now-void* pointer
2733         result of xrealloc (until recently it was char*).
2735         * configure.in (AC_CHECK_FUNCS): Add nl_langinfo.
2736         * src/sort.c (inittables): Add && HAVE_NL_LANGINFO to the #if-test
2737         guarding the nls month-checking code.
2738         (nls_numeric_format): Remove unnecessary (and error-evoking w/SunOS' cc)
2739         `unsigned' from dcls of text and lim.
2740         (main): Cast lconvp->grouping to `unsigned char*' to appease SunOS's cc.
2742 1998-01-03  Jim Meyering  <meyering@na-net.ornl.gov>
2744         * lib/Makefile.am (AUTOMAKE_OPTIONS): Define to ../src/ansi2knr.
2746         * configure.in: Convert the .o suffix on files in LIBOBJS to $U.o so
2747         those files will be built via the ANSI2KNR-filtering rules if necessary.
2749 1997-12-25  Jim Meyering  <meyering@na-net.ornl.gov>
2751         * configure.in: Remove AC_DEFINE of _GNU_SOURCE.
2752         * acconfig.h (_GNU_SOURCE): Define if not already defined.
2753         Put this code in @TOP@ section.
2754         (_GNU_SOURCE): Remove #undef.
2756 1997-12-22  Jim Meyering  <meyering@na-net.ornl.gov>
2758         * configure.in: AC_DEFINE _GNU_SOURCE.
2759         * acconfig.h: Add _GNU_SOURCE.
2761 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
2763         * configure.in (AC_CHECK_HEADERS): Add stdlib.h.
2765         * src/system.h: Merge in things from fileutils' version of this file.
2766         * src/csplit.c: s/__P/PARAMS/.
2767         * src/fmt.c: s/__P/PARAMS/.
2768         * src/od.c: s/__P/PARAMS/.
2769         * src/pr.c: s/__P/PARAMS/.
2771 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
2773         * src/sys2.h: s/HAVE_DECLARATION_/HAVE_DECL_/g.
2775 1997-12-13  Jim Meyering  <meyering@na-net.ornl.gov>
2777         * src/fmt.c (main): Add some braces.
2778         Check return code from fclose of each input file.
2779         Close stdout and check for errors.
2781         * src/csplit.c (close_output_file): Check ferror before calling fclose.
2782         (main): Close stdout and check for errors.
2784 1997-11-15  Jim Meyering  <meyering@na-net.ornl.gov>
2786         * acconfig.h: Add mktime.
2787         * configure.in (jm_FUNC_MKTIME): Use it.
2788         * lib/mktime.c: New file.
2789         * lib/Makefile.am (EXTRA_DIST): Add mktime.c
2791         * intl/Makefile.in (distclean): Don't remove libintl.h here.
2792         * Makefile.am (DISTCLEANFILES): Remove it here instead.
2794 1997-11-13  Jim Meyering  <meyering@na-net.ornl.gov>
2796         * lib/strftime.c: Update from FSF.
2797         * m4/strftime.m4: Check for POSIX.2's %f format spec.
2799 1997-11-12  Jim Meyering  <meyering@na-net.ornl.gov>
2801         * src/system.h [!HAVE_MEMPCPY] (mempcpy): Define.
2802         * configure.in (AC_CHECK_FUNCS): Add mempcpy.
2804 1997-11-09  Jim Meyering  <meyering@na-net.ornl.gov>
2806         * configure.in (jm_FUNC_STRFTIME): Use it.
2807         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Check for localtime_r.
2808         * m4/strftime.m4 (jm_STRFTIME_PREREQS): Check for localtime_r.
2809         (jm_FUNC_GNU_STRFTIME): Use new macro.
2810         (jm_FUNC_STRFTIME): New macro.  Likewise.
2811         Reported by Noel Cragg.
2813 1997-11-08  Jim Meyering  <meyering@na-net.ornl.gov>
2815         * m4/lfs.m4 (AC_LFS): New file/macro.
2816         * m4/Makefile.am (EXTRA_DIST): Add lfs.m4.
2817         * configure.in (AC_LFS): Use it.
2818         (AC_CHECK_FUNCS): Add fseeko.
2819         * src/od.c (fseeko): Define a stub if ! HAVE_FSEEKO.
2820         (skip): Use fseeko if available.  Don't use lseek; it causes
2821         the stdio stream to become out of sync with respect to the
2822         underyling file descriptor.
2823         From Paul Eggert.
2825 1997-10-16  Paul Eggert  <eggert@twinsun.com>
2827         * configure.in (AC_CHECK_FUNCS): Add fseeko.
2829         * src/od.c (skip): Use fseeko.  Don't use lseek; it causes
2830         the stdio stream to become out of sync with respect to the
2831         underyling file descriptor.
2833 1997-11-06  Jim Meyering  <meyering@na-net.ornl.gov>
2835         * src/sort.c (getmonth): Remove HAVE_ALLOCA #ifdefs.
2836         We always have alloca.
2837         (keycompare): Don't use variable size arrays (it's a gcc-extension).
2838         Rewrite code that increments new lengths when not `ignoring'.
2840 1997-11-02  Jim Meyering  <meyering@na-net.ornl.gov>
2842         * acconfig.h: Add malloc and realloc.
2844         * src/wc.c (main): New option, --max-line-length (-L).
2845         (wc, write_counts): Implement it.
2846         From Bruno Haible.
2848 1997-10-26  Jim Meyering  <meyering@na-net.ornl.gov>
2850         * lib/memcasecmp.c: Convert to upper case before comparing.
2851         This makes join -i work with sort -f.
2852         Reported by Arthur Pool.
2854 1997-10-25  Jim Meyering  <meyering@na-net.ornl.gov>
2856         * lib/xmalloc.c (xalloc_fail): Renamed from fixup_null_alloc.
2857         (xcalloc): #ifdef-out unused function.
2858         (xrealloc): Remove code to work around deficient versions of realloc.
2859         Now we have an autoconf-enabled replacement version.
2860         (xmalloc): Remove code to work around deficient versions of malloc.
2861         Now we have an autoconf-enabled replacement version.
2863         * lib/memcmp.c (rpl_memcmp): Rename from memcmp.
2865         * src/sort.c (NLS_STRNCMP) [!ENABLE_NLS]: s/strcmp/strncmp/.
2867         * lib/xmalloc.c (xalloc_fail_func): Initialize to 0, not NULL.
2869         * configure.in (jm_FUNC_MALLOC): Use it.
2870         (jm_FUNC_REALLOC): Use it.
2872         * lib/Makefile.am (EXTRA_DIST): Add malloc.c.
2873         * lib/malloc.c: New file.
2874         * m4/malloc.m4: New file.
2875         * m4/Makefile.am (EXTRA_DIST): Add malloc.m4.
2877         * lib/Makefile.am (noinst_HEADERS): Add xalloc.h.
2878         (EXTRA_DIST): Add realloc.c.
2879         (EXTRA_DIST): Add malloc.c.
2881         * src/system.h: Include xalloc.h.
2882         Remove dcls of xmalloc, xcalloc and xrealloc.
2884         * lib/xalloc.h: New file.
2886         * lib/xmalloc.c: Include xalloc.h.
2887         Change VOID to void.
2888         (xalloc_exit_failure): Renamed extern.
2889         (xalloc_msg_memory_exhausted): New extern.
2890         (xalloc_fail_func): New extern.
2891         (fixup_null_alloc): Use new variables.
2893 1997-10-24  Jim Meyering  <meyering@na-net.ornl.gov>
2895         * src/unexpand.c: Remove old-style xmalloc and xrealloc decls.
2896         (add_tabstop): Cast first arg of xrealloc to char*.
2898         * src/sort.c: Include xalloc.h.
2899         (xmalloc): Remove function.
2900         (xrealloc): Remove function.
2901         (main): Set xalloc_fail_func to cleanup.
2902         Set xalloc_exit_failure SORT_FAILURE.
2904         * src/paste.c: Remove old-style xmalloc and xrealloc decls.
2905         (paste_parallel): Cast first arg of xrealloc to char*.
2907         * src/od.c: Remove old-style xmalloc and xrealloc decls.
2908         (decode_format_string): Cast first arg of xrealloc to char*.
2910         * src/expand.c: Remove old-style xmalloc and xrealloc decls.
2911         (add_tabstop): Cast first arg of xrealloc to char*.
2913         * lib/xalloc.h: New file.
2915         * src/cut.c (ADD_RANGE_PAIR): Cast first arg of xrealloc to char*.
2916         (getstr): Cast xmalloc return value to char*.
2918         * src/csplit.c: Include xalloc.h.
2919         (xmalloc): Remove function.
2920         (xrealloc): Remove function.
2921         (main): Set xalloc_fail_func to cleanup.
2923         * src/*.c: Remove old-style xmalloc and xrealloc decls.
2924         * src/system.h: Add prototyped xcalloc, xmalloc and xrealloc decls.
2925         Suggestion from Achim Blumensath.
2927 1997-10-23  Jim Meyering  <meyering@na-net.ornl.gov>
2929         * Makefile.am (aclocal-files): Also depend on m4/Makefile.am.
2931         * src/system.h [!HAVE_DECLARATION_FREE]: Declare free.
2932         [!HAVE_DECLARATION_MALLOC]: Declare malloc.
2933         [!HAVE_DECLARATION_REALLOC]: Declare realloc.
2934         [!HAVE_DECLARATION_STPCPY]: Declare stpcpy.
2935         [!HAVE_DECLARATION_STRSTR]: Declare strstr.
2936         * src/cat.c: Remove stpcpy dcl.
2937         * src/csplit.c: Remove malloc and realloc dcls.
2938         * src/sort.c: Remove free, malloc, and realloc dcls.
2939         * src/tac.c: Remove malloc, and realloc dcls.
2940         * src/tr.c: Remove stpcpy dcl.
2941         On some systems, strstr and stpcpy are macros, so declaring them
2942         unconditionally gets syntax errors.
2943         Reported by Mark M. Kettenis.
2945         * configure.in: Use jm_CHECK_DECLS.
2946         * m4/Makefile.am (EXTRA_DIST): Add decl.m4 and check-decl.m4.
2948 1997-10-22  Jim Meyering  <meyering@na-net.ornl.gov>
2950         * m4/decl.m4: New file.
2951         * m4/check-decl.m4: New file.  New macro, jm_CHECK_DECLS.
2953 1997-10-16  Paul Eggert  <eggert@twinsun.com>
2955         * src/od.c (LONG_MAX): Define if not defined.
2957 1997-10-16  Jim Meyering  <meyering@na-net.ornl.gov>
2959         * src/sort.c (look_for_fraction): Patch from Ã˜rn Hansen.
2960         (getmonth): Compare the two month names only to the length of the
2961         string in the month table.  Patch from Ã˜rn Hansen.
2962         (NLS_STRNCMP): New macro.
2963         (strncoll_s2_readonly): New function.
2964         (inittables): Don't use temporary `comp' to hide type of
2965         comparator function.
2966         (nls_sort_month_comp): Declare parameters to be void* to match
2967         comparator function type required for qsort.
2968         (getmonth): Use NLS_STRNCMP rather than #ifdef.
2969         Use do-while, rather than while-loop.
2971 1997-10-14  Jim Meyering  <meyering@na-net.ornl.gov>
2973         * src/sort.c: (_NL_ITEM) [!defined]: Define.
2974         From from Ã˜rn E. Hansen.
2976         * src/sort.c: Use STREQ in place of most uses of strcmp.
2977         (NLS_STRCMP): Define.
2978         (getmonth): Remove ifdef and use NLS_STRCMP instead.
2979         Use HAVE_ALLOCA, not _HAVE_ALLOCA.
2980         (zaptemp): Make parameter `const'.
2982         * tests/sort-test/Test.pm: Add tests to exercise new fraccompare.
2984         * src/sort.c (CHARS_IN_ABM): Remove definition
2985         (inittables): Remove assumption that all abbreviated month names have
2986         length 3.
2987         (getmonth): Likewise.
2988         (main): Add #if's for more efficient code when using the GNU C library.
2989         From Ulrich Drepper.
2991         * src/sort.c (strncoll): Rename parameter to LEN.
2992         (keycompare): Move assignment out of if-expression.
2994         * lib/xstrdup.c: New file.
2995         * lib/Makefile.am (libtu_a_SOURCES): Add xstrdup.c
2997         * src/sort.c: Declare xstrdup.
2998         (my_setlocale): New function.
2999         (main): Guard against failure of strdup (use xstrdup) and setlocale.
3001         * src/system.h (STREQ): Define.
3002         * src/od.c (STREQ): Remove definition.
3004         * src/sort.c (look_for_fraction): Eliminate arbitrary limit on
3005         number of `groups'.  Declare as void, not int.
3006         Patch from Ã˜rn E. Hansen.
3007         (main): When determining whether we're in the C or POSIX locale,
3008         don't rely on the form of the string returned by setlocale.
3009         Suggestion from Ulrich Drepper.
3011 1997-10-12  Jim Meyering  <meyering@na-net.ornl.gov>
3013         * src/sort.c: Apply big patch from Ã˜rn E. Hansen.
3014         Clean up, indent.
3015         (NLS_MEMCMP): Define.
3016         (keycompare): Use it instead of open-coded #ifdefs.
3017         (compare): Likewise.
3018         (NLS_MAP): Remove unused definitions.
3019         Replace with uses of UCHAR.
3020         (nls_locale_map): Remove dcl of unused file-scope array.
3022 1997-10-10  Jim Meyering  <meyering@na-net.ornl.gov>
3024         * tests/sort-test/Test.pm: Add a test.
3025         From William Lewis.
3027 1997-10-07  Jim Meyering  <meyering@na-net.ornl.gov>
3029         * src/*.c: Update bug-reporting address.
3030         * src/cat.c: Indent cpp directives to reflect nesting.
3031         * src/cksum.c: Likewise.
3032         * src/csplit.c: Likewise.
3033         * src/fmt.c: Likewise.
3034         * src/nl.c: Likewise.
3035         * src/paste.c: Likewise.
3037 1997-09-27  Jim Meyering  <meyering@na-net.ornl.gov>
3039         * m4/memcmp.m4: Integrate test to detect bug in memcmp from the
3040         Next x86 OpenStep C library.  Test program from William Lewis.
3042 1997-09-21  Jim Meyering  <meyering@na-net.ornl.gov>
3044         * src/od.c [struct tspec] (hexl_mode_trailer): Rename from `trailer.'
3045         (dump_hexl_mode_trailer): Rename from dump_string_trailer.
3046         Use fputs and putchar instead of trivial or %-less printfs.
3047         (decode_one_format): Parenthesize each field_width assignment in an
3048         argument list to make the side effect a little more apparent.
3049         (write_block): Use fputs and putchar instead of trivial or %-less
3050         printfs.
3051         (dump_strings): Cast string_min to off_t to avoid long-standing warning.
3053         * src/od.c: Implement new `z' (hexl-mode) modifier.
3054         [struct tspec] (trailer): New field.
3055         (field_width): Likewise.
3056         (dump_string_trailer): New function.
3057         (decode_one_format): Save each field_width in the tspec.
3058         Patch from John Kodis.
3060 1997-09-14  Jim Meyering  <meyering@na-net.ornl.gov>
3062         * src/od.c (main) [--traditional]: Don't give diagnostic about there
3063         being more than three arguments if there are *no* arguments specified.
3064         Reported by Jochen Hein.
3066 1997-09-13  Jim Meyering  <meyering@na-net.ornl.gov>
3068         * tests/sort-test/Test.pm: Add tests 19a and 19b.
3070 1997-07-21  Jim Meyering  <meyering@na-net.ornl.gov>
3072         * src/tail.c (parse_obsolescent_option): #ifdef-out portability warning.
3074 1997-07-19  Jim Meyering  <meyering@na-net.ornl.gov>
3076         * src/sort.c (checkfp): Print the `disorder' message.  Include both
3077         the number and the contents of the first out-of-order line, in addition
3078         to the file name.  Change meaning of return value.
3079         (check): Don't print disorder message here.
3080         Adjust test of checkfp's return value.
3081         Feature suggestion from Karl Heuer.
3083 1997-07-13  Jim Meyering  <meyering@na-net.ornl.gov>
3085         * doc/Makefile.am (EXTRA_DIST): Remove explicit mention of texinfo.texi.
3086         Now, automake includes it automatically.
3088         * src/head.c: Include xstrtoul.h.
3089         Remove global variable, unit_size.
3090         (atou): Remove now-unused function.
3091         (parse_unit): Likewise.
3092         (string_to_ull): New function.
3093         (head): Take new parameter, count_lines.  Use it instead of unit_size.
3094         Update callers.
3095         (head_file): Likewise.
3096         (main): Use string_to_ull, not atou/parse_unit.
3097         The problem was that overflow wasn't detected, so `head -c 4096m'
3098         was treated just like `head -c 0'.
3099         Reported by Jerome Abela.
3101         * tests/wc: New directory.
3102         * tests/head: New directory.
3103         * tests/Makefile.am (SUBDIRS): Add head and wc.
3104         * configure.in (AC_OUTPUT): Add tests/head/Makefile and
3105         tests/wc/Makefile.
3107 1997-07-05  Jim Meyering  <meyering@na-net.ornl.gov>
3109         * src/tail.c (parse_obsolescent_option): If POSIXLY_CORRECT is set, give
3110         a diagnostic and fail when there are two or more non-option arguments.
3112 1997-07-04  Jim Meyering  <meyering@na-net.ornl.gov>
3114         * tests/tac/mk-script.pl: Redirect output of cmp to /dev/null.
3116         * configure.in (ALL_LINGUAS): Add Norwegian (no).
3118         * Makefile.am (aclocal-files): Look in source directory, not build dir.
3119         From Andreas Schwab.
3121 Sun Jun 15 06:36:41 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3123         * src/pr.c (init_header) [T_BUF_FMT]: Output the 4-digit year (not the
3124         2-digit abbreviation) in each page header.  Reported by Noah Friedman.
3126 Sat Jun 14 12:29:12 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3128         * src/cut.c (cut_fields): Detect when the input is empty and handle
3129         that special case.  Before `cut -f1 < /dev/null' would improperly
3130         output a single newline.  Reported by Phil Richards.
3132 Sun Apr 27 15:10:58 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3134         * man/Makefile.am (DISTFILES): Add $(man_MANS).
3136         * configure.in (ALL_LINGUAS): Add Czech (cs) and Swedish (sv).
3138 Thu Apr  3 21:14:02 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3140         * m4/Makefile.am (EXTRA_DIST): Update file list.
3142         * tests/cut-test/Test.pm: Add test from Phil Richards.
3144 Sat Mar 22 20:29:10 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3146         * missing: New file -- from the automake-1.1m distribution.
3148 Fri Mar 21 23:56:41 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3150         * Makefile.am (AUTOMAKE_OPTIONS): Require automake-1.1l.
3151         (aclocal.m4): Use aclocal's new -I option.
3153 Thu Mar 13 21:46:04 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3155         * src/tr.c (main): Make sure c1 is not -1 before using it as an
3156         array index.  Patch from Greg McGary.  Although this is truly a
3157         bug, I believe it would not cause tr to misbehave on most systems.
3158         I could not construct a test case with which this bug causes tr
3159         to generate invalid output.
3161         * tests/pr-test/Test.pm: Add test that -o 0 works.
3163         * src/pr.c (main): Allow use of 0 (zero) as the margin offset
3164         argument to the -o option.  Patch from Gary Anderson.
3166 Fri Feb 28 22:32:51 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3168         * src/uniq.c (usage): Fix typo in --help output.  From Andreas Schwab.
3170 Tue Feb 25 20:34:51 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3172         * lib/Makefile.am (noinst_HEADERS): Add obstack.h.
3173         (libtu_a_SOURCES): Add obstack.c.
3175 Sun Feb 16 08:30:29 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3177         * tests/Makefile.am (SUBDIRS): Add tac.
3178         * tests/tac: New directory.
3179         * configure.in (AC_OUTPUT): Add tests/tac/Makefile.
3181         * tests/pr-test/{tt-0FF, tt-bl, tta3-0FF, ttb3-0FF, tt-FF, tt-t,
3182         tta3-FF, ttb3-FF}: New files.  Renamed (s/T/tt/) to avoid name clashes
3183         on case-independent filesystems.
3184         * tests/pr-test/Test.pm (Tests '7.*'): Reflect file-renaming.
3186         * src/tail.c (parse_obsolescent_option): Reverse order of args in
3187         diagnostic.  Remove `' quotes in diagnostic.
3188         (parse_options): Remove `' quotes in diagnostic.
3190 Sat Feb  8 22:43:45 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3192         * src/tail.c (parse_obsolescent_option): Give warning diagnostic for
3193         (but now accept) obsolescent usage with more than one file argument.
3195 Sun Feb  2 23:06:59 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3197         * src/join.c: Move alloca-related preprocessor code into system.h.
3198         * src/od.c: Remove alloca-related preprocessor code.
3199         * src/system.h: Add alloca-related preprocessor code.
3201 Sat Feb  1 07:21:43 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3203         * tests/pr-test/*: Rename files to avoid exceeding 14-character limit.
3204         * tests/pr-test/Test.pm: Reflect renamings.
3206         * tests/pr-test/mk-script.pl (spec_to_list): Warn about all filenames
3207         that exceed max-length before dying.
3209         * src/pr.c (init_parameters): For compatibility: use default
3210         separator `TAB' with full length lines.  From Roland Huebner.
3212 Fri Jan 31 19:53:54 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3214         * src/tac.c: Rename globals buffer and buffer_size to have G_ prefix
3215         to avoid shadowing local variables.
3217         * lib/long-options.c (parse_long_options): Compare getopt_long return
3218         value against -1, not EOF.  Use NULL, not `(int *) 0' as last parameter
3219         in getopt_long call.
3221         * src/pr.c (add_line_number): Rename from `number' to avoid shadowing
3222         local variables.
3224         * src/*.c: Compare getopt_long return value against -1, not EOF.
3225         Use NULL, not `(int *) 0' as last parameter in getopt_long call.
3226         (usage): Bracket bug-reporting address with <> and append a period.
3228 Wed Jan 29 20:54:24 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3230         * tests/tr-test/Test.pm: Do each test twice: get input via REDIR
3231         and PIPE.
3233         * tests/tail/Test.pm (test_vector): Do each (non-stdin-requiring)
3234         test three times.
3236         * tests/pr-test/Test.pm: Remove common_option_prefix flag.
3237         (test_vector): Prepend the common option here instead.
3239         * tests/md5sum-test/Test.pm: Remove input_via_stdin flag.
3240         Do each test twice: get input via REDIR and PIPE.
3242         * tests/cut-test/Test.pm: Do each test three times.
3244         * tests/cut-test/mk-script.pl: Allow each test to be run any or all
3245         of three different ways.  Program input may be specified via a file
3246         or files listed on the command line, via input redirection (if there's
3247         only one file), or via a pipe.
3249 Tue Jan 28 20:54:06 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3251         * tests/cut-test/mk-script.pl: Remove `t' prefix on all generated
3252         test file names.
3253         Change suffixes from (.in, .exp, .out, .err) to (.I, .X, .O, .E).
3254         Ensure that no test file (generated or maintainer-supplied) has a
3255         name longer than 14 characters.
3257 Sun Jan 26 12:49:50 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3259         * Version 1.22.
3261         * src/tail.c (parse_options): Add quotes to make messages identical.
3263 Sat Jan 25 00:12:29 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3265         * src/tail.c (parse_obsolescent_option): Comment.
3266         (parse_options): Remove unnecessary goto and label.
3268         * tests/sort-test/mk-script.pl: Interpret `input arg is a hash
3269         reference' as meaning that the tested program will read no input.
3270         Most of the tests for the date program use this feature.
3271         Also for date, the generated script now reflects specification
3272         (in Test.pm) of default and per-test environment settings.
3274         * src/csplit.c: Reflect changes to xstrtol and xstrtoul interfaces.
3275         * src/fold.c: Likewise.
3276         * src/head.c: Likewise.
3277         * src/join.c: Likewise.
3278         * src/nl.c: Likewise.
3279         * src/od.c: Likewise.
3280         * src/pr.c: Likewise.
3281         * src/uniq.c: Likewise.
3283         * lib/xstrtoul.h (XSTRTOL_H): Undefine it.
3285         * lib/xstrtol.h [!_STRTOL_ERROR]: Define the type `enum strtol_error'
3286         only if it hasn't already been defined.
3287         (_STRTOL_ERROR): Undefine.
3289         * lib/xstrtol.c (__xstrtol): Change interpretation of
3290         VALID_SUFFIXES == NULL vs VALID_SUFFIXES == "".  Use the former
3291         when any suffix is valid, the later when no suffix is allowed.
3293 Fri Jan 24 23:36:00 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3295         * lib/long-options.c (parse_long_options): Reset optind to zero
3296         before just returning so that getopt internals get initialized from
3297         the probably-new parameters when/if getopt is called later.
3298         From Ulrich Drepper.
3300 Thu Jan 23 19:17:03 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3302         * src/tail.c (parse_obsolescent_option): Recognize and fail for
3303         more malformed obsolescent options.  Makes for better diagnostics.
3305 Wed Jan 22 21:34:50 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3307         * tests/Makefile.am (SUBDIRS): Add tail.
3308         * tests/tail: New directory.
3309         * configure.in (AC_OUTPUT): Add tests/tail/Makefile.
3311         * src/tail.c (parse_options): New function.
3312         (parse_obsolescent_option): New function.
3313         (main): Use the new functions instead of open-coding them.
3314         This better fixes the bug in handling obsolescent `+Nc' options.
3315         General cleanup.
3317 Tue Jan 21 22:49:00 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3319         * src/tail.c (main): Properly handle what the POSIX spec calls
3320         the `obsolescent' usage (e.g., tail +2c).  It didn't work.
3321         Reported by Karl Heuer.
3323 Sun Jan 12 22:13:27 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3325         * tests/tr-test/Test.pm: Rename tests so that the associated files
3326         have names that are distinct even on filesystems on which file
3327         names are case insensitive.
3328         Reported by Fred Fish.
3329         * tests/cut-test/Test.pm: Likewise.
3331         * tests/tr-test/Makefile.am: Regenerated to reflect renamed tests.
3332         * tests/cut-test/Makefile.am: Likewise.
3334 Wed Jan  8 16:38:24 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3336         * Version 1.21.
3338         * lib/getopt.c (_getopt_internal): Use `_', rather than the
3339         (sometimes-)expansion `gettext'.
3341 Tue Jan  7 22:50:13 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3343         * lib/getopt.c: New (more POSIX compliant) version from GNU libc.
3344         [_]: Define to gettext also if ENABLE_NLS is defined.
3345         This is temporary.
3347 Thu Jan  2 21:17:50 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3349         * src/pr.c (init_fps): Initialize lines_stored field in three places.
3350         This avoids uninitialized memory reads in close_file.
3352 Wed Jan  1 17:32:18 1997  Jim Meyering  <meyering@na-net.ornl.gov>
3354         * configure.in (AC_ARG_PROGRAM): Remove explicit use.
3355         It's implicit in AM_INIT_AUTOMAKE.  From Wayne Stewart.
3357 Sun Dec 29 23:42:57 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3359         * src/pr.c (init_header): Plug a small memory leak by using stack
3360         rather than heap for a 15-byte temporary buffer.
3362 Sat Dec 28 00:03:23 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3364         * src/pr.c (TAB_WIDTH): Parenthesize uses of parameters and renamed
3365         from tab_width.
3366         (POS_AFTER_TAB): Renamed from pos_after_tab.  Define in terms of
3367         TAB_WIDTH rather than duplicating the expression.
3369 Fri Dec 27 17:29:02 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3371         * tests/join-test/mk-script.pl: Fix a couple of thinkos and typos.
3372         Now it works with pr's tests, too.
3374         * tests/pr-test/Makefile.am (explicit): Regenerate list of files,
3375         this time with duplicates removed.
3377         * src/pr.c (usage): Break long string literal into two separate
3378         printf statements to accomodate default maximum of 2048 characters
3379         for Irix-4.0.5.  Reported by Kaveh Ghazi.
3381         * Makefile.am (aclocal.m4): No longer depend on acinclude.m4.
3383         * tests/Makefile.am (SUBDIRS): Add pr-test.
3385         * configure.in: AC_REQUIRE version 2.12 of autoconf.
3386         AC_OUTPUT: Add tests/pr-test/Makefile.
3388 Sun Dec 22 08:11:27 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3390         * acinclude.m4: Move macros to individual files in new directory, m4/.
3391         See ChangeLog entries in sh-utils for the details.
3393         * configure.in: Increment version to 1.20a.
3395         * tests/md5sum-test/Makefile.am: Use same framework as other tests.
3396         * tests/md5sum-test/Test.pm: New file.
3398 Sat Dec 21 20:32:58 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3400         * tests/Makefile.am (EXTRA_DIST): Add README and Makefile.am.in.
3402         * tests/Makefile.am.in: New file.
3404         * tests/sort-test/Makefile.am: Clone the Makefile.am from join-test.
3405         Replace only the definition of $x and the auto-generated lists of
3406         test files.
3407         * tests/cut-test/Makefile.am: Likewise.
3408         * tests/tr-test/Makefile.am: Likewise.
3410         * tests/join-test/Makefile.am: Add @MAINT@-protected rule for
3411         verifying that Makefile.am is consistent with Test.pm.
3413 Fri Dec 20 00:08:36 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3415         * tests/join-test/Makefile.am (MAINTAINERCLEANFILES): Use $(in1)
3416         and $(in2), not $(in).
3418         * tests/join-test/mk-script.pl: New option: --list.
3419         Generate lists of files used/generated.
3421 Thu Dec 19 23:28:41 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3423         * tests/join-test/mk-script.pl: Rewrite to be more general -- so
3424         it can be used for join, cut, sort, tr, and soon, pr test suites.
3425         * tests/tr-test/mk-script.pl: Symlink through CVS repo to join's
3426         mk-script.pl.
3427         * tests/sort-test/mk-script.pl: Likewise.
3428         * tests/cut-test/mk-script.pl: Likewise.
3430         * tests/tr-test/Test.pm: Adapted for new mk-script.pl.
3431         * tests/join-test/Test.pm: Likewise.
3433 Tue Dec 17 16:48:51 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3435         * tests/join-test/Makefile.am (.pl): Make generated file read-only so
3436         I don't accidentally modify it instead of the one with the .pl suffix.
3438         * acinclude.m4 (jm_SYS_PROC_UPTIME): Require AC_PROG_CC, rather than
3439         now-obsolete AC_C_CROSS.
3440         (jm_FUNC_MKTIME): When redefining, use rpl_ prefix, not gnu_ one
3441         since there's nothing GNU-specific about the replacement.  Contrast
3442         with gnu_ prefix added to strftime.
3443         (jm_FUNC_MEMCMP): New macro.
3444         * configure.in: Use jm_FUNC_MEMCMP instead of AM_FUNC_MEMCMP.
3445         * acconfig.h: Add memcmp.
3446         * README: Remove warning about memcmp.  The new macro handles it.
3448 Mon Dec 16 23:03:27 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3450         * tests/Makefile.am (pkgdata_DATA): Remove unnecessary assignment.
3451         From Eric Backus.
3452         (AUTOMAKE_OPTIONS): Likewise.
3454 Sat Dec 14 14:51:50 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3456         * acinclude.m4 (jm_SYS_PROC_UPTIME): Fix typo in cache variable
3457         name for cross compiling.
3458         Remove definitions of gettext-related macros.  The gettext
3459         installation procedure installs corresponding .m4 files so that
3460         aclocal will use them.
3462 1996-12-12  Paul Eggert  <eggert@twinsun.com>
3464         * system.h (ISDIGIT): Replace with smaller, faster edition
3465         that yields nonzero only on ASCII digits.
3466         (ISDIGIT_LOCALE): New macro, with same meaning that ISDIGIT
3467         used to have.
3469         * tr.c (is_char_class_member): Use ISDIGIT_LOCALE instead of
3470         ISDIGIT to test for characters in CC_DIGIT class.
3472         * sort.c (digits): Remove; subsumed by new ISDIGIT.
3473         (inittables): Remove initialization of `digits'.
3474         (fraccompare, numcompare, main): Use ISDIGIT (x) instead of digits[x].
3475         (fraccompare, numcompare): Avoid casts to unsigned char that are no
3476         longer needed.
3478         * csplit.c (get_format_width, get_format_prec): Avoid
3479         unnecessary comparison of digit to '\0'.
3481 Thu Dec 12 23:42:51 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3483         * src/sort.c (usage): Clarify description of -u option.
3484         From Karl Berry.
3486 Wed Dec 11 19:32:18 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3488         * Version 1.20.
3490 Tue Dec 10 00:15:50 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3492         The file name, `build-script.pl' is longer than 14 characters.
3493         Rename it.
3494         * tests/cut-test/mk-script.pl: Rename from build-script.pl.
3495         * tests/cut-test/Makefile.am: Reflect renaming.
3496         * tests/tr-test/mk-script.pl: Rename from build-script.pl.
3497         * tests/tr-test/Makefile.am: Reflect renaming.
3498         * tests/sort-test/mk-script.pl: Rename from build-script.pl.
3499         * tests/sort-test/Makefile.am: Reflect renaming.
3500         * tests/join-test/mk-script.pl: Rename from build-script.pl.
3501         * tests/join-test/Makefile.am: Reflect renaming.
3502         Reported by Karl Heuer.
3504         * configure.in (VERSION): Bump to 1.19r.
3505         (AC_ISC_POSIX): Remove kludgy macro.
3506         Use this test instead:
3507         (LIBS): Add -lcposix if it contains strerror.
3508         Patch from Karl Heuer.
3510 Sun Dec  8 07:22:38 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3512         =========== Update for automake-1.1k.
3513         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.1k.
3514         * configure.in (AM_CONFIG_HEADER): Use it.
3515         (AC_OUTPUT): Remove stamp-h timestamping statement.
3516         Now, AM_CONFIG_HEADER does it automatically.
3517         * lib/Makefile.am (noinst_LIBRARIES): Rename to libtu.a as per
3518         new automake requirement.
3519         Rename tu_* variables to libtu_a_*.
3521 Wed Dec  4 21:03:18 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3523         * src/pr.c: Apply big patch from Roland Huebner.
3525         * src/tr.c (main) [!POSIXLY_CORRECT]: Allow the identity mappings:
3526         [:upper:] to [:upper:] and [:lower:] to [:lower:].
3527         (main) [POSIXLY_CORRECT]: Give a more specific diagnostic for
3528         the invalid identity mappings [:upper:] to [:upper:] and [:lower:]
3529         to [:lower:].
3530         (class_ok): Update table to reflect that tr now allows these
3531         identity mappings.  Suggestion from Risto Kankkunen.
3533 Thu Nov 28 00:31:18 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3535         * configure.in (AM_GNU_GETTEXT): Renamed from ud_GNU_GETTEXT
3536         for gettext-0.10.25.
3538 Tue Nov 26 23:05:14 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3540         * src/sort.c (fraccompare): Add explicit `int' in `register' dcls,
3541         to avoid new warning from gcc.
3543 Sun Nov 24 21:02:15 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3545         * tests/sort-test/Makefile.am (t): Add names of those 5 tests.
3547         * tests/sort-test/Test.pm: Add 5 tests to exercize just-fixed code.
3549         * src/sort.c (set_ordering): Revert 1994-05-04 change to this function
3550         so that blanks are not unconditionally ignored when computing start
3551         and end positions for numeric keys with explicit character offsets.
3552         Reported by Markus Demleitner.
3554 Sat Nov 23 16:07:08 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3556         * cat.c (usage): Alphabetize option descriptions the way sort -f would.
3557         * fmt.c (usage): Likewise.
3558         * join.c (usage): Likewise.
3559         * md5sum.c (usage): Likewise.
3560         * od.c (usage): Likewise.
3561         * pr.c (usage): Likewise.
3562         * sort.c (usage): Likewise.
3563         * split.c (usage): Likewise.
3564         * wc.c (usage): Likewise.
3565         From Karl Berry.
3567 Fri Nov 22 20:20:37 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3569         * src/csplit.c (process_regexp): Update CURRENT_LINE only if
3570         the new value would be larger.  This avoids the infinite loop
3571         otherwise provoked by situations like this:
3572         printf "\na\n" | csplit - '/a/-1' '{*}'
3573         From Jens Schmidt.
3575 Tue Nov 19 23:16:57 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3577         * configure.in (AM_SANITY_CHECK_CC): Remove it.  Autoconf-2.11
3578         has this built-in.
3580 Sat Nov  2 08:50:01 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3582         * doc/Makefile.am (MAKEINFO): Set to makeinfo --no-split.
3583         Otherwise, the generated info files have names longer than
3584         the 14-byte max of some old systems.
3585         Reported by Karl Heuer.
3587 Fri Nov  1 21:33:16 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3589         * lib/strtol.c: Update from GNU libc.
3591         * tests/sort-test/Test.pm: Add a test to exercize this fix.
3593         * src/sort.c [!ENABLE_ASSERTIONS]: Guard NDEBUG definition.
3594         (checkfp): Fix off-by-one error that resulted in writing one byte
3595         beyond the end of a malloc'd buffer.  It caused `sort -c' to segfault
3596         on Linux systems having a relatively recent libc.  Before, running
3597         the command, perl -e "print 'x' x 30, \"\n\";"|sort -c
3598         would provoke the memory overrun (though not necessarily the failure).
3599         Add an assertion.
3600         Reported by Risto Kankkunen.
3602 Thu Oct 31 17:48:24 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3604         * src/sort.c (key_init): New function.
3605         (main): Use key_init in the two places where it was open-coded.
3606         This fixes a UMR of the general_numeric field.
3608         * src/join.c (decode_field_spec): Always give FIELD_INDEX a value.
3609         This avoids a spurious UMR report from purify.
3610         (prjoin): Add an assertion.
3611         (add_field): Update assertion.
3613         * src/tr.c (es_free): New function.
3614         (parse_str): Use it to plug a small memory leak.
3616 Wed Oct 23 22:02:24 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3618         * lib/md5.c: Update from GNU libc.
3619         * lib/md5.h: Update from GNU libc.
3621 Mon Oct 21 16:48:12 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3623         * src/tr.c (validate): Remove TAB from diagnostic, for consistency.
3625 Sun Oct 20 13:44:07 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3627         * lib/Makefile.am (INCLUDES): Add -I../intl.  Reported by Eric Backus.
3629         * Makefile.am (AUTOMAKE_OPTIONS): Set to `gnits'
3630         (EXTRA_DIST): Remove.
3632         * configure.in: Remove README_ALPHA related code.  Automake takes
3633         care of it automatically now when in gnits mode.
3635         * lib/md5.c (md5_process_bytes): Cast void* pointer to char* before
3636         doing arithmetic with it.
3638 Sat Oct 19 23:13:54 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3640         * lib/md5.c: Update from GNU libc.
3641         * lib/md5.h: Update from GNU libc.
3643 Fri Oct 18 00:08:04 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3645         * configure.in (AC_OUTPUT): Add tests/join-test/Makefile.
3647         * tests/Makefile.am (SUBDIRS): Add join-test.
3649 Tue Oct 15 23:25:31 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3651         * src/tr.c (get_next): Rewrite to treat lower/upper mapping as a
3652         special case.
3653         (main): Write separate loops to initialize mapping for lower->upper
3654         and upper->lower conversion.
3655         Reported by Arne Henrik Juul.
3657 Sun Oct 13 12:52:42 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3659         * lib/xstrtol.c (__xstrtol): Return an error for invalid suffix.
3660         Before, e.g., `split -b 1M' would be silently accepted and treated
3661         like `split -b 1'.  Reported by Franc,ois.
3663         * src/split.c (usage): Remove parameter, REASON.
3664         (main): Update callers to use combination of error (0, 0, ... and
3665         usage (EXIT_FAILURE).
3666         (main): When a string operand cannot be converted to a number of
3667         bytes or lines, include that string in the diagnostic.
3669 Sat Oct 12 00:05:11 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3671         * configure.in (AC_REPLACE_FUNCS): Add strpbrk and strtol.
3673         * lib/Makefile.am (EXTRA_DIST): Remove.
3675 Thu Oct 10 23:41:36 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3677         * lib/md5.c (md5_stream): Apply fix from Ralph Loader
3678         <loader@maths.ox.ac.uk> via Ulrich Drepper.
3680 Wed Oct  9 07:26:40 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3682         * lib/Makefile.am (tu_DEPENDENCIES): Depend on $(tu_LIBADD).
3684 Tue Oct  8 21:32:17 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3686         * lib/error.c: Include error.h to align with libit --
3687         under protest, François :-).
3689 Sun Oct  6 08:02:28 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3691         * acinclude.m4 (AC_HEADER_SYS_TIME_H, AM_FUNC_MKTIME,
3692         AM_FUNC_ERROR_AT_LINE, AM_FUNC_OBSTACK): Remove definitions.
3693         They're included in automake-1.1f.
3695         * configure.in (AM_FUNC_ERROR_AT_LINE): Use it instead of
3696         open-coding it.
3698 Sat Oct  5 12:40:22 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3700         * lib/memcpy.c [HAVE_CONFIG_H]: Include config.h.
3701         From Karl Berry.
3703 Fri Oct  4 07:20:37 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3705         * configure.in (GNU_PACKAGE): New variable.
3706         (PACKAGE_VERSION): Remove it.
3708         * acconfig.h (GNU_PACKAGE): New variable.
3709         (PACKAGE_VERSION): Remove now-unused variable.
3711         * lib/long-options.c (parse_long_options): Separate package name
3712         and version number to accomodate new --version output requirement.
3713         * lib/long-options.h: Update prototype.
3715 Thu Oct  3 23:27:31 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3717         * src/md5sum.c (main): Remove dead code that used to print --version
3718         output.
3720 Tue Oct  1 06:54:22 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3722         * configure.in: Use result of AM_FUNC_STRTOD to set POW_LIBM.
3723         * src/Makefile.am (sort_LDADD): Use any library (-lm) that
3724         gets substituted for @POW_LIBM@.
3726         * tests/md5sum-test/md5-rfc (md5sum): Use ../../src/md5sum.
3728 Mon Sep 30 23:35:46 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3730         * tests/md5sum-test/md5-rfc (md5sum): Set to $srcdir/md5sum.
3732         * acinclude.m4: Update definitions from gettext-0.24.
3734 Sun Sep 29 20:04:53 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3736         * tests/sort-test/build-script.pl: Die if close fails.
3737         * tests/tr-test/build-script.pl: Likewise.
3739         * configure.in (AC_OUTPUT): Add tests/cut-test/Makefile.
3740         * tests/Makefile.am (SUBDIRS): Add cut-test.
3741         * tests/cut-test: New directory.
3743 Fri Sep 27 22:22:09 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3745         * configure.in (ALL_LINGUAS): Add spanish (es).
3747 Thu Sep 26 21:02:54 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3749         * src/md5sum.c (usage): Remove references in --help output to
3750         the now-deprecated --string option.  Support for it will be
3751         removed soon.  Using this option can provoke a memory access
3752         violation on some systems because of (unavoidable in an efficient
3753         implementation) alignment assumptions made by functions in md5.c.
3754         md5sum.c could leave the option in and accomodate the alignment
3755         restriction, but this option was intended solely for testing, and
3756         the tests are now all file-oriented, so it's not necessary.
3758         * tests/md5sum-test/md5-rfc: Rewrite to avoid use of --string option.
3760 Wed Sep 25 21:43:10 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3762         * tests/sort-test/Makefile.am (t): Factor out .in suffix.
3763         Include new test: t16a.
3764         * tests/tr-test/Makefile.am (t): Likewise.
3766         * src/Makefile.am (EXTRA_DIST): Remove md5-test.rfc.
3768 Mon Sep 23 10:00:50 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3770         * tests/md5sum-test/Makefile.am (EXTRA_DIST): Distribute $(TESTS).
3772 Sun Sep 22 09:24:22 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3774         * src/sort.c (keycompare): Declare translate to be unsigned char *.
3775         Otherwise, sign extension caused misordering when using e.g. -f.
3776         Reported by Erick Branderhorst.
3777         * tests/sort-test/Test.pm: Add Erick's test for that fix.
3779         * tests/Makefile.am (SUBDIRS): Add md5sum-test.
3781 Sat Sep 21 13:34:59 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3783         * src/Makefile.am (check): Remove tests for md5sum.
3784         * tests/md5sum-test: New directory.  Put them here instead.
3785         * configure.in (AC_OUTPUT): Add tests/md5sum-test/Makefile.
3787 Thu Sep 19 08:54:05 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3789         * tests/: Rename from checks.
3790         * Makefile.am (SUBDIRS): Change `checks' to `tests'.
3791         * configure.in (AC_OUTPUT): Likewise.
3793         * configure.in ($PACKAGE, $VERSION): Don't AC_DEFINE_UNQUOTED these.
3794         AM_INIT_AUTOMAKE now does it (as of automake-1.1e).
3796 Sun Sep 15 23:08:48 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3798         * Makefile.am (EXTRA_DIST): Remove acinclude.m4.
3800 Thu Sep 12 17:05:23 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3802         * lib/Makefile.am (EXTRA_DIST): Add getline.c.
3803         (tu_SOURCES): Remove getline.c
3804         From Kaveh Ghazi.
3806 Sun Sep  8 13:55:18 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3808         * checks/sort-test/build-script.pl: Prefix $in with \$srcdir/
3809         so make check works with VPATH build.  From Uli Drepper.
3811 Sat Sep  7 12:25:42 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3813         * src/system.h: Add comments justifying IS* versions of ctype.h macros.
3815         * src/fmt.c (check_punctuation): Use ISPUNCT instead of ispunct.
3816         (get_line): Use ISSPACE instead of isspace.  From Bruno Haible.
3818 Mon Sep  2 10:34:46 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3820         * src/*.c (usage): Tell where to report bugs.
3822 Sun Aug 25 22:50:47 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3824         * checks/sort-test/Makefile.am (EXTRA_DIST): Add $x-tests.
3825         ($x-tests): Guard dependencies with @MAINT@.
3826         * checks/tr-test/Makefile.am: Likewise.
3828 Sat Aug 24 14:25:41 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3830         * src/cat.c (cat): Cast first arg to stpcpy to char* to avoid warnings.
3832 Wed Aug 21 22:28:26 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3834         * configure.in (ALL_LINGUAS): Add polish (pl).
3836 Sun Aug 18 09:34:42 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3838         * configure.in (AC_OUTPUT): Add checks/sort-test/Makefile.
3839         * checks/Makefile.am (SUBDIRS): Add sort-test.
3841 Sat Aug 17 18:57:17 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3843         * Makefile.am (EXTRA_DIST): Add acinclude.m4.
3845 Tue Aug 13 21:47:23 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3847         * src/Makefile.am (EXTRA_DIST): Remove ansi2knr.1 and ansi2knr.c.
3848         Automake includes them automatically.
3850         * configure.in (AM_INIT_AUTOMAKE): Use it.
3851         (AM_PROG_INSTALL): Remove.  AM_INIT_AUTOMAKE does this.
3852         (AC_PROG_MAKE_SET): Likewise.
3854 Sun Aug 11 20:49:21 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3856         * configure.in: Rename a few macros for automake-1.1c.
3857         (AC_REPLACE_GNU_GETOPT): Remove.
3858         (AC_PATH_PROG): Find perl -- needed only for checks if you
3859         change or remove things with e.g. make maintainerclean.
3862         * lib/Makefile.am (tu_LIBADD): Remove @REGEXOBJ@.  New AM_WITH_REGEX
3863         adds .o files to @LIBOBJ@.
3864         (tu_SOURCES): Add getopt.c and getopt1.c.
3865         (EXTRA_DIST): Remove getopt.c and getopt1.c.
3867         * acinclude.m4: New file -- derived from aclocal.m4.
3868         * aclocal.m4: This file is now generated by the aclocal program
3869         (which comes with the automake package.)
3871 Sun Aug  4 10:50:46 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3873         * checks/: New directory.
3874         * checks/Makefile.am: New file.
3875         * configure.in (AC_OUTPUT): Add new directories: checks,
3876         checks/tr-test.
3877         * Makefile.am (SUBDIRS): Likewise.
3879 Sat Jul 27 17:22:14 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3881         * src/system.h (bindtextdomain) [!ENABLE_NLS]: Undefine to avoid
3882         redefinition warnings on solaris.
3883         (textdomain) [!ENABLE_NLS]: Likewise.
3885 Thu Jul 25 23:06:35 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3887         * src/unexpand.c (unexpand): Move EOF check to follow code that
3888         processes and generates output for pending spaces.  Before
3889         `printf '  ' |unexpand -t 1,2' generated no output.
3891         * src/md5sum.c (md5_check): Remove parameter, BINARY.
3892         Rename local TYPE_FLAG to BINARY, so md5_file uses the binary mode
3893         from the input stream rather than the one from the command line.
3894         (main): Fail with a diagnostic if --binary or --text is specified
3895         when verifying checksums.
3896         Reported by Eli Zaretskii <eliz@is.elta.co.il>.
3898 Sun Jul 21 11:58:48 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3900         * configure.in: Add check for error_at_line so systems with
3901         GNU libc don't compile and link with distributed error.c.
3902         * lib/Makefile.am (tu_SOURCES): Remove error.c.
3903         (EXTRA_DIST): Add error.c.
3905         * configure.in (AC_REPLACE_FUNCS): Replace getline.c.
3906         Add related check for the getdelim function.
3907         From Ulrich Drepper -- as done in gettext.
3909 Sat Jul 20 15:59:36 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3911         * configure.in (PACKAGE_VERSION): Use space instead of hyphen to
3912         separate PACKAGE and VERSION.
3914         * aclocal.m4 (AM_SANITY_CHECK_CC): New macro.  Derived from
3915         macros from Bruno Haible and from Cygnus.
3916         * configure.in (AM_SANITY_CHECK_CC): Use it.
3918 Wed Jul 17 00:30:28 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3920         * install-sh: Get version with MIT copyright.
3922 Tue Jul 16 00:09:37 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3924         * aclocal.m4 (fp_C_PROTOTYPES): Improved version from
3925         François Pinard.
3926         Update all other macros to reference $fp_cv_prog_cc_stdc, rather
3927         than $ac_cv_prog_cc_stdc.
3929         * src/od.c (OFF_T_MAX): Remove definition.
3930         (main): Compare against LONG_MAX rather than OFF_T_MAX.
3932 Mon Jul 15 23:42:57 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3934         * Many files: Update FSF address.
3936 Sun Jul 14 16:53:50 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3938         * src/unexpand.c (unexpand): Fix bug that contributed to endless loop
3939         when invoking `echo '  ' |unexpand -t 1,2': use print_tab_index, not
3940         tab_index in inner flush_pend: while loop.  From Keith Owens
3941         <kaos@audio.apana.org.au>.
3943         * src/unexpand.c [HAVE_LIMITS_H]: Include limits.h for INT_MAX.
3944         [!INT_MAX]: Define it.
3945         (main): Append INT_MAX to command-line-specified tab list to
3946         ensure termination in unexpand's inner loop.
3947         Derived from a patch from Keith Owens.
3949 Thu Jul 11 22:04:36 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3951         * Version 1.19.
3953         * configure.in (VERSION): Bump to 1.19.
3955 Wed Jul 10 22:57:29 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3957         * aclocal.m4 (fp_PROG_CC_STDC): Include sys/stat.h in test program
3958         so that DYNIX/ptx V4.1.3 doesn't use `-Xc -D__EXTENSIONS__' -- with
3959         those options on that system, sys/stat.h gets compile errors.
3960         With help from Marcus Daniels.
3962         * getopt.c: Update from gettext-0.10.23.
3963         * getopt1.c: Likewise.
3964         * getopt.h: Likewise.
3966 Tue Jul  9 18:07:23 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3968         * src/fmt.c (MAXCOST): Use `(unsigned long)1' rather than `(COST)1'
3969         so the left operand of the << isn't signed.
3970         From Kjetil Torgrim Homme.
3972         * po/Makefile.in.in (install-data): Don't install NLS files when
3973         they're not requested.  From Ulrich Drepper.  Reported by
3974         Kjetil Torgrim Homme <kjetilho@ifi.uio.no>.
3976 Fri Jul  5 21:55:58 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3978         * po/Makefile.in.in ($(PACKAGE).pot): Merge from gettext-0.10.23.
3979         * ABOUT-NLS: Likewise.
3980         * intl/*: Likewise.
3981         * aclocal.m4: Likewise.
3983 Thu Jul  4 07:24:54 1996  Jim Meyering  <meyering@na-net.ornl.gov>
3985         * src/uniq.c (usage): Remove space before newline in usage message.
3987         * src/md5sum.c (MIN_DIGEST_LINE_LENGTH): New macro.
3988         [NEWLINE_REPLACEMENT_STRING*]: Remove macros.
3989         (main): Output a leading backslash for a line describing a file
3990         whose name contains a newline.  Then translate each NEWLINE byte
3991         in the file name to the string, "\\n", and each backslash to "\\\\".
3992         File names that don't contain NEWLINE aren't translated.
3993         (split_3): Rewrite to handle file names with embedded newlines.
3994         Miles Bader and Jim Blandy suggested this new encoding scheme.
3996         * src/md5sum.c (md5_file): Replace obsolete comment with a description
3997         of the function.
3998         (md5_check): Don't use "s"-adding trick to form the plural of
3999         `checksum.'  That doesn't work well with translation.
4000         Suggestions from Ulrich Drepper.
4001         (split_3): Add missing semicolon so it compiles.  From Jim Blandy.
4003 Wed Jul  3 23:21:09 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4005         * src/md5sum.c (split_3): Correct test for 35-byte line to accomodate
4006         fact that leading blanks may be stripped.
4008 Tue Jul  2 21:51:40 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4010         * configure.in (ALL_LINGUAS): Add dutch (nl).
4012 Mon Jul  1 23:50:19 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4014         * src/md5sum.c [NEWLINE_REPLACEMENT_STRING]: Define.
4015         (split_3): Translate NL bytes not to NUL, but to
4016         NEWLINE_REPLACEMENT_STRING.
4017         Suggested by Ulrich Drepper.
4018         (main): Translate back to NL-containing filename.
4020 Sun Jun 30 22:42:17 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4022         * src/md5sum.c (split_3): Take an additional parameter, S_LEN.
4023         Adapt caller.
4024         Map translated NEWLINE-containing filename back into the original
4025         NEWLINE-containing name.
4026         (md5_check): Translate NEWLINE bytes to NUL bytes in filename.
4028 Sat Jun 29 18:59:07 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4030         * configure.in (PACKAGE_VERSION): Add `GNU ' prefix so it
4031         appears in the output of --version.  Reported by RMS.
4033 Wed Jun 26 21:35:10 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4035         * src/Makefile.am (LDADD): Remove sort-specific hack to link
4036         with -lm.
4037         * aclocal.m4 (AM_FUNC_STRTOD): New macro.
4038         * configure.in (AM_FUNC_STRTOD): Use it.
4039         (AC_REPLACE_FUNCS): Remove strtod.
4040         Suggested by Tom Tromey.
4042         * po/Makefile.in.in (install-data): Add `else true;' to avoid
4043         letting failing if-condition cause make failure.
4044         From Fred Fish (fnf@ninemoons.com).
4046 Tue Jun 25 21:55:18 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4048         * Version 1.18a.
4050 Tue Jun 18 20:43:20 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4052         * aclocal.m4: Update from gettext-0.10.20.
4053         * ABOUT-NLS: Likewise.
4054         * intl/*: Likewise.
4056 Thu Jun 13 22:31:39 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4058         * configure.in (VERSION): Bump to 1.18a.
4060         * po/Makefile.in.in ($(PACKAGE).pot): Reapply change of May 30.
4061         Depend on POTFILES only when using maintainer mode.
4063         * intl/*: Update from gettext-0.10.18.
4065 Tue Jun 11 23:32:10 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4067         * Version 1.18.
4069         * po/Makefile.in.in: Update from gettext-0.10.17.
4070         * intl/*: Likewise.
4071         * ABOUT-NLS: Likewise.
4073 Mon Jun 10 18:22:29 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4075         * Makefile.am (cvs-dist): Use -c option in cvs tag command.
4077 Fri Jun  7 22:06:46 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4079         * configure.in (VERSION): Set to 1.18.
4081         * src/Makefile.am (sort_LDADD): Set this to -lm to get pow when using
4082         the strtod supplied with this package.  Otherwise, linking failed on
4083         Solaris-2.4 systems.  Reported by Wayne Stewart <wstewa@atl.com>.
4085 Thu Jun  6 21:57:08 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4087         * po/Makefile.in.in: Update from gettext-0.10.16.
4088         * intl/*: Likewise.
4089         * ABOUT-NLS: Likewise.
4090         * aclocal.m4 (AC_REPLACE_GNU_GETOPT): Move definition to precede
4091         gettext-related ones.
4092         Update from gettext-0.10.16.
4094 Fri May 31 22:04:51 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4096         * Version 1.17.
4098         * Makefile.am (EXTRA_DIST): Set to texinfo.tex so that file is
4099         distributed.
4101 Thu May 30 00:07:48 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4103         * Version 1.16.
4105         * tail.c (main): Interpret the old-style +VALUE and -VALUE options
4106         like -c VALUE and -c +VALUE (resp) when VALUE has one of the [bkm]
4107         suffix multipliers.  This makes the code consistent with --help
4108         output.  Reported by Karl Heuer.
4110         * sort.c (limfield): #ifdef-out a block of code that makes
4111         GNU sort incompatible with Unix sort when a key-end spec refers
4112         to the N'th character in a field that has fewer than N characters.
4113         The POSIX spec doesn't appear to specify behavior for this case.
4114         From Karl Heuer.
4116         * po/Makefile.in.in (stamp-cat-id): Avoid using temp filename
4117         longer than 14 characters.
4118         (mostlyclean): Likewise.
4119         From Karl Heuer.
4121         * po/Makefile.in.in ($(PACKAGE).pot): Depend on POTFILES only
4122         when using maintainer mode.  Reported by Karl Heuer.
4124         * po/Makefile.in.in (.po.mo): Reenable dependency and rule.
4125         It is required when using native NLS, e.g. on Solaris.
4126         From Marcus Daniels.
4128         * od.c (decode_one_format): Use %lu (not %d) printf format
4129         corresponding to unsigned long, SIZE.
4131         * Version 1.15.
4133         * intl/Makefile.in (installcheck): New target.
4134         * po/Makefile.in.in (installcheck): New target.
4136         * od.c (decode_one_format): Take another parameter.
4137         Give a specific diagnostic for invalid format spec here rather
4138         than an overly general one from caller's caller.
4139         (decode_format_string): Update caller.
4140         (main): Don't give diagnostic here when decode_format_string fails.
4141         Remove assertions that could fail on some Crays because they don't
4142         have a two-byte type.
4143         Johan Danielsson (joda@pdc.kth.se) reported the failed assertions.
4145 Mon May 27 17:43:31 1996  Jim Meyering  <meyering@na-net.ornl.gov>
4147         * cat.c (main): Use STDIN_FILENO and STDOUT_FILENO instead of
4148         less portable fileno (stdin) and fileno (stdout).
4149         * sort.c (main): Use STDIN_FILENO instead of less portable
4150         fileno (stdin).
4152 Mon May 20 21:50:23 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4154         * Makefile.am (distcheck): Remove target and rule -- automake-0.33
4155         adds it automatically.
4157 Sun May 19 13:15:49 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4159         * configure.in (LINGUAS): Add ko.
4160         * Makefile.am (distcheck): Remove @MAINT@ prefix from first command.
4162 Thu May 16 22:18:41 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4164         * Makefile.am (distcheck): New target.  From Gord Matzigkeit.
4166 Fri May 10 20:46:13 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4168         * po/Makefile.in.in (all-yes): Always depend on CATALOGS.  Otherwise
4169         they won't be built and install could fail.  From Ulrich Drepper.
4170         (.po.mo): Disable dependency and rule when not in maintainer mode.
4172         * aclocal.m4 (ud_WITH_NLS): Make DATADIRNAME and CATOBJEXT depend
4173         on whether we're using GNU gettext.  From Ulrich Drepper.
4175 Wed May  8 21:10:43 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4177         * intl/Makefile.in (distdir): Renamed from dist. For compatibility
4178         with automake-0.32.
4179         * po/Makefile.in.in (distdir): Likewise.
4181         * po/Makefile.in.in (all-yes): Depend on GMOFILES.
4182         Depend on CATALOGS and GMOFILES files only in maintainer mode.
4184 Tue May  7 22:10:20 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4186         * configure.in: Require autoconf-2.10.
4188         * aclocal.m4 (jm_MAINTAINER_MODE): New macro.
4189         * configure.in (jm_MAINTAINER_MODE): Use it.
4191 Sat May  4 20:40:01 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4193         * configure.in (LINGUAS): Add de.
4194         * po/de.po: New file.
4196         * memcasecmp.c [IN_CTYPE_DOMAIN]: Rename from ISASCII.
4197         * regex.c [IN_CTYPE_DOMAIN]: Likewise.
4198         * system.h [IN_CTYPE_DOMAIN]: Likewise.
4200 Sun Apr 28 17:10:03 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4202         * fmt.c (copy_rest): Don't copy past end of prefix.  Output
4203         trailing spaces if the prefix had any.  Before, fmt would
4204         improperly output NUL bytes.  The command
4205         perl -e 'print "| S";' |fmt -p' |  '|tr '\0' @
4206         output `|@S'.  Reported by François Pinard.
4208         * sort.c (main): Give a better diagnostic for `sort -0'.
4209         Reported by Karl Berry.
4211         * configure.in: Make fp_C_PROTOTYPES precede AC_C_INLINE.
4212         Otherwise, some systems lose because the value AC_C_INLINE choses
4213         with plain `cc' is different from that chosen when using the ANSI-mode
4214         C compiler.  From Kaveh Ghazi.
4216 Tue Apr 23 22:05:35 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4218         * aclocal.m4 (AC_REPLACE_GNU_GETOPT): New macro.
4219         * configure.in: Use it.
4220         * lib/Makefile.am (tu_SOURCES): Remove getopt.c and getopt1.c.
4221         (EXTRA_DIST): Add getopt.c and getopt1.c
4223         * src/*.c, src/*.h: Update Copyright years to include 1996.
4225 Sun Apr 21 08:04:51 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4227         * getline.c: New version from gettext-0.10.12.
4228         * getline.h: Likewise.
4229         * configure.in (AC_CHECK_FUNCS): Add getdelim.
4230         Suggested by Ulrich Drepper.
4232         * md5sum.c (md5_check): Remove spurious newline at end of error
4233         format string.
4235         * od.c (decode_one_format): Use printf's L modifier for long doubles,
4236         not `l'.  From Eric Backus.
4238         * Makefile.am (LDADD): Put @INTLLIBS@ before package library.
4240         * od.c: Include <values.h>.
4241         [!BITSPERBYTE]: Define.
4242         [OFF_T_MAX]: Use BITSPERBYTE, not 8, and cast the result to off_t.
4243         * configure.in (AC_CHECK_HEADERS): Add values.h.
4245 Fri Apr 19 23:48:53 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4247         * Makefile.am (cvs-dist): New rule.  Based on the one from
4248         Tom Tromey's automake.
4250 Thu Apr 18 22:13:14 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4252         * tail.c (main): Make code clearer:  use new variable `n_files' in
4253         place of `argc - optind'.  Use `file' instead of `argv + optind'.
4255 Sat Apr 13 13:08:29 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4257         * lib/Makefile.am (noinst_HEADERS): Include memcasecmp.h,
4258         not memcasecmp.c.
4260         * memcasecmp.c: Unprotoize.
4261         [ISASCII]: Define.
4262         [ISUPPER]: Define.
4264         * join.c (decode_field_spec): Rename local variable `valid'
4265         to invalid (and reverse sense) to avoid conflict with the
4266         macro definition in /usr/include/locale.h on SunOS 4.1.3.
4268 Tue Apr  9 22:43:57 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4270         * uniq.c: Add new option --ignore-case (-i).
4271         Include memcasecmp.h.
4272         (different): Compare with memcasecmp if ignoring case.
4273         (main): Handle 'i'.
4275         * join.c (memcasecmp): Remove static definition of function.
4276         Include memcasecmp.h instead.
4278         * memcasecmp.c: New file.
4279         * memcasecmp.h: New file.
4280         * lib/Makefile.am (tu_SOURCES): Add memcasecmp.c.
4281         (noinst_HEADERS): Add memcasecmp.h.
4283 Thu Apr  4 17:05:33 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4285         * tr.c: The following commands all failed unnecessarily.
4286         tr -cs '[:upper:]' '[X*]'
4287         tr -dcs '[:lower:]' n-rs-z
4288         tr -ds '[:xdigit:]' [:alnum:]'
4289         tr -dcs '[:alnum:]' [:digit:]'
4290         tr -dc '[:upper:]'
4291         Reported by Ross Ridge (ross@worf.mks.com).
4292         (validate): Add missing conjunct (translating) in test for
4293         `translating and complementing character classes' error.  Before,
4294         valid uses of tr could fail.  E.g. `tr -dcs '[:cntrl:]' '[:alnum:]''.
4295         (homogeneous_spec_list): New function.
4296         (validate): Use it to relax the old (overly restrictive) restriction
4297         that prohibited use of complemented character classes when translating.
4298         Now, that is allowed as long as the translation maps many to one.
4299         (get_spec_stats): Rename and redefine global has_char_class from
4300         has_upper_or_lower.
4302 Wed Apr  3 07:08:57 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4304         * aclocal.m4: Update NLS macros from gettext-0.10.11.
4306         * src/Makefile.am (INCLUDES): Add -I$(srcdir) to get system.h
4307         when srcdir != builddir.  From Kaveh Ghazi.
4309 Wed Mar 27 23:33:36 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4311         * cksum.c (cksum): Use format "%lu %ld" (instead of "%10lu %8ld")
4312         to be POSIX compliant.  From Stephen Gildea <gildea@x.org>.
4314 Sun Mar 24 08:47:40 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4316         * join.c (main): Use EXIT_FAILURE, not 2, as exit code in error call.
4317         * od.c (skip, main): Likewise.
4318         * tr.c (main): Likewise.
4320         * cat.c cksum.c comm.c csplit.c cut.c expand.c fmt.c fold.c head.c
4321         join.c md5sum.c nl.c od.c paste.c pr.c split.c sum.c tac.c tail.c
4322         tr.c unexpand.c uniq.c wc.c: Exit with status EXIT_SUCCESS or
4323         EXIT_FAILURE, rather than 0 or 1.
4325 Sat Mar 23 23:14:40 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4327         * system.h [EXIT_FAILURE]: Undefine and define to 1 also if it
4328         is defined to zero.  Suggested by Paul Eggert.
4330         * sort.c [SORT_FAILURE]: New macro.
4331         Be careful to exit with 1 only when -c is used and the
4332         input is not properly sorted.  In all other cases, use
4333         SORT_FAILURE as required by POSIX.
4334         (main): Change some `error (1, ...' to use SORT_FAILURE.
4335         Upon successful termination, exit with EXIT_SUCCESS instead of `0'.
4336         Replace all uses of `2' (as exit code) with SORT_FAILURE.
4338 Thu Mar 21 22:47:50 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4340         * csplit.c: Include assert.h, but disable assertions.
4341         (process_line_count): Replace if-abort with a slightly relaxed
4342         assertion.  Before, `echo |csplit - 1 1' would abort.
4343         Reported by Samuli.Karkkainen@hut.fi.
4344         (parse_patterns): Disallow uses like `csplit FILE 0' with zero
4345         line number, `csplit FILE 2 1' with decreasing line numbers, and
4346         warn about uses like `csplit FILE 3 3' that have equal line numbers.
4348         * sort.c (main): Declare to be of type int, not void.
4349         From Peter Seebach <seebs@taniemarie.solon.com>.
4350         * cat.c cksum.c comm.c csplit.c cut.c expand.c fold.c head.c join.c
4351         nl.c paste.c pr.c split.c sum.c tac.c tail.c tr.c unexpand.c uniq.c
4352         wc.c (main): Likewise.
4354 Sat Mar 16 16:30:07 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4356         * configure.in (PACKAGE_VERSION): New macro.
4357         * acconfig.h (PACKAGE_VERSION): Add it.
4358         * src/Makefile.am: Remove rules for generating version.c.
4359         Remove references to version.o, version.h, and stamp-v.
4360         * version.c: Remove file.
4361         * version.h: Remove file.
4362         * cat.c cksum.c comm.c csplit.c cut.c expand.c fmt.c fold.c
4363         head.c join.c md5sum.c nl.c od.c paste.c pr.c sort.c split.c
4364         sum.c tac.c tail.c tr.c unexpand.c uniq.c wc.c: Don't include
4365         version.h.
4366         (main): Use PACKAGE_VERSION instead of version_string.
4368 Mon Mar 11 16:07:08 CST 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4370         * sort.c (write_bytes): Renamed from xfwrite.
4371         Remove SIZE parameter.  It was always 1. Update all callers.
4372         Rename NELEM parameter to N_BYTES and change its type to size_t.
4374 Sat Mar  9 13:30:12 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4376         * cat.c cksum.c comm.c csplit.c cut.c expand.c fmt.c
4377         fold.c head.c join.c md5sum.c nl.c od.c paste.c pr.c sort.c
4378         split.c sum.c tac.c tail.c tr.c unexpand.c uniq.c wc.c (main):
4379         Initialize for internationalized message support: call setlocale,
4380         bindtextdomain, and textdomain.
4381         * system.h: Add definitions and includes for NLS.
4382         * Makefile.am (SUBDIRS): Add intl and po.
4383         * src/Makefile.am (datadir): Define.
4384         (localedir): Define.
4385         (DEFS): Add LOCALEDIR definition.
4386         (LDADD): Add @INTLLIBS@.
4387         * aclocal.m4: Add NLS-related macro definitions from
4388         gettext distribution.
4389         * acconfig.h (ENABLE_NLS, HAVE_CATGETS, HAVE_GETTEXT, HAVE_LC_MESSAGES,
4390         HAVE_STPCPY): New macros.
4391         Add PACKAGE and VERSION.
4392         * configure.in (PACKAGE): Define with AC_DEFINE_UNQUOTED.
4393         (VERSION): Likewise.
4394         (ALL_LINGUAS): Define.
4395         (AC_CHECK_HEADERS): Add float.h.
4396         (ud_GNU_GETTEXT): Use it.
4397         Link an nls file.
4398         (AC_OUTPUT): Reflect addition of two new directories, intl and po.
4399         Create po/Makefile.
4400         From François Pinard.
4402         * tr.c (star_digits_closebracket): Declare formal param, IDX,
4403         and local I to be of type size_t (rather than int) to avoid
4404         warnings from gcc -Wall.
4406 Wed Feb 28 20:32:48 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4408         * src/Makefile.am: Adapt for automake-0.30.
4409         (noinst_HEADERS): Rename from HEADERS.
4410         (INCLUDES): Remove -I.. and -I$(srcdir).  automake-0.30 adds these
4411         to DEFS automatically.
4412         * lib/Makefile.am: (noinst_HEADERS): Rename from HEADERS.
4414 Wed Feb 21 18:56:27 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4416         * join.c (xfields) [without -t]: Ignore leading blanks.
4417         From David Dyck (dcd@tc.fluke.COM).
4419 Sun Feb 18 12:07:27 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4421         * join.c [TOLOWER]: Define.
4422         (usage): Briefly describe new --ignore-case (-i) option.
4423         (memcasecmp): New function.
4424         (main): Set IGNORE_CASE for -i.
4425         (keycmp): Compare with memcasecmp if IGNORE_CASE is set.
4426         Suggestion and an initial patch from Alberto Accomazzi
4427         <alberto@cfa0.harvard.edu>.
4429 Sat Feb 17 18:54:40 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4431         * sort.c: Add -z option.  Change all occurrences of '\n' to `eolchar'.
4432         (usage): Describe it.
4433         (main): Set eolchar to 0 for -z.
4434         From Mark W. Eichin <eichin@cygnus.com>.
4436 Fri Feb 16 21:44:14 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4438         * join.c (main): Mark two strings for translation.
4439         * md5sum.c (md5_check): Mark a string for translation.
4440         From François Pinard.
4442 Mon Feb 12 21:12:28 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4444         Update for automake-0.29.
4445         * Makefile.am (CONFIG_HEADER): Don't define.  Automake now does it.
4446         * src/Makefile.am: Likewise.
4447         * lib/Makefile.am: Likewise.
4448         * doc/Makefile.am (info_TEXINFOS): Renamed from TEXINFOS.
4449         * man/Makefile.am (man_MANS): Renamed from MANS.
4451         * fmt.c [TRUE]: Undefine before defining to avoid warning on NeXT.
4452         [FALSE]: Likewise.
4453         From Derek Clegg (dclegg@next.com).
4455 Sat Feb  3 16:20:40 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4457         * Version 1.14.
4459 Wed Jan 31 23:26:13 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4461         * tail.c (dump_remainder): Flush stdout when tailing-forever on
4462         multiple files.  From Carlos Canau <Carlos.Canau@relay.puug.pt>.
4464 Fri Jan  5 18:30:28  1996 Jim Meyering  (meyering@na-net.ornl.gov)
4466         * aclocal.m4: For SVR4 systems, use -Xc -D_POSIX_C_SOURCE in CFLAGS,
4467         not just -Xc.  From François Pinard.
4469         * doc/Makefile.am (DIST_OTHER): Don't set to mdate-sh.  mdate-sh is
4470         distributed automatically.  From Tom Tromey.
4472 Thu Jan  4 20:32:52 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4474         * nl.c: Include rx.h after limit.h (not before) to avoid warning
4475         about the redeclaration of RE_DUP_MAX in limit.h.  rx.h protects
4476         its definition.  From Kaveh Ghazi.
4478         * src/Makefile.am (DIST_OTHER): Include md5-test.rfc so make check
4479         works again.  Reported by François Pinard and Kaveh Ghazi.
4481         * rx.c [SYNTAX]: Rename from SYNTAX_TABLE.
4482         [SYNTAX_TABLE]: Remove extern dcl of re_syntax_table.
4483         (RE_SEARCH_2_FN): Cast string1 and string2 to avoid pointer type
4484         mismatch errors from e.g. SunOS's /bin/cc.
4485         Reported by Kaveh Ghazi.
4487 Wed Jan  3 23:34:39 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4489         * configure.in (VERSION): Set variable directly rather than from
4490         a separate file.
4491         * Makefile.am (DIST_OTHER): Remove VERSION.
4492         * src/Makefile.am (version.c): Depend on Makefile, not ../VERSION.
4493         (stamp-v): New target; depend on Makefile.
4494         (DISTCLEANFILES): Add stamp-v, version.c.
4496 Tue Jan  2 00:08:08 1996  Jim Meyering  (meyering@na-net.ornl.gov)
4498         * sort.c (keycompare): Rewrite cases handling ignored characters
4499         so that they really are ignored.  Reported by Carl Johnson
4500         <carlj@cjlinux.home.org>.
4502 Fri Dec 22 21:34:55 1995  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
4504         * configure.in: Touch stamp-h only if config.h is remade.
4506         * csplit.c (extract_regexp) [!WITH_REGEX]: Intialize
4507         syntax_parens field.
4509 Mon Dec 18 21:42:44 1995  Jim Meyering  (meyering@comco.com)
4511         Use automake to generate Makefile.in files.
4512         * Makefile.am: New file.
4513         * doc/Makefile.am: New file.
4514         * lib/Makefile.am: New file.
4515         * man/Makefile.am: New file.
4516         * src/Makefile.am: New file.
4518 Thu Dec 14 21:13:22 1995  Jim Meyering  (meyering@comco.com)
4520         * fmt.c (main): Use xstrtol instead of atoi.
4522         * fold.c (main): Use xstrtol instead of atoi.
4523         (fold_file): Make a couple locals `int', not size_t, and cast
4524         fwrite's third parameter to size_t.
4526         * nl.c (main): Use xstrtol instead of atoi.
4527         Rename misleading --first-page=N option to --starting-line-number=N.
4528         (usage): Update.
4530         * uniq.c (main): Use xstrtol instead of atoi.
4532 Fri Dec  8 20:48:00 1995  Jim Meyering  (meyering@comco.com)
4534         * aclocal.m4 (fp_C_PROTOTYPES): Set ANSI2KNR to ./ansi2knr.
4536 Thu Dec  7 19:55:03 1995  Jim Meyering  (meyering@comco.com)
4538         * aclocal.m4 (ud_WITH_REGEX): New macro.
4539         * configure.in: Use it.
4540         * rx.c, rx.h: New files.
4541         * lib/Makefile.in (REGEX): Set to @REGEXOBJ@, not regex.o.
4542         (SOURCES, DISTFILES): Add rx.c, rx.h.
4543         * acconfig.h (WITH_REGEX): Add it.
4544         * csplit.c [!WITH_REGEX]: Include rx.h.
4545         * nl.c [!WITH_REGEX]: Likewise.
4546         * tac.c [!WITH_REGEX]: Likewise.
4547         From Ulrich Drepper and François Pinard.
4549 Tue Dec  5 17:49:53 1995  Jim Meyering  (meyering@comco.com)
4551         * sort.c (main): Diagnose invalid arguments to -k, then fail.
4553         * sort.c (numcompare): Properly handle all cases in which signs differ.
4554         From Karl Heuer.
4556         * Makefile.in (mandir): @mandir@ is just $(prefix)/man.
4557         Append `/man1'.  Reported by Karl Heuer.
4559         * sum.c (bsd_sum_file): Remove misleading comment.  From Karl Heuer.
4561         * src/Makefile.in [.c._o]: Don't create $<-tmp.  From Kaveh Ghazi.
4563 Fri Dec  1 01:02:36 1995  Jim Meyering  (meyering@comco.com)
4565         * lib/Makefile.in (default): New target.
4567         * sort.c (numcompare): Properly order `-' and valid integers;
4568         treat `-' as if it were zero.  Reported by Ross Alexander
4569         <r.alexander@auckland.ac.nz>.
4571         * Makefile.in (DISTFILES): Remove unused mkdep-Makefile.
4572         (.PHONY): Depend on default.
4574 Wed Nov 29 21:50:53 1995  Jim Meyering  (meyering@comco.com)
4576         * aclocal.m4 (jm_PROG_C_MKDEP): Remove, for now.
4577         (jm_AUTODEPS): Likewise.
4578         (jm_WITH_GNU_MAKE): Likewise.
4579         * configure.in (jm_AUTODEPS): Remove.
4581         * sort.c (begfield): Replace loop with equivalent if-else.
4582         (limfield): Fix bug that made field specs like -k1.5 return a
4583         pointer into LINE beyond the first field.
4584         Don't try to trim trailing blanks here; it's not
4585         possible because we don't know where the field begins.
4586         Replace loop with equivalent if-else.
4587         (trim_trailing_blanks): New function.
4588         (findlines): Call it.
4589         (keycompare): Likewise.
4590         (main): Don't decrement T2 corresponding to `x' in field
4591         specs like -ku.v,w.x.
4593 Sun Nov 26 15:50:23 1995  Jim Meyering  (meyering@comco.com)
4595         * csplit.c [!UINT_MAX]: Define.
4596         [!INT_MAX]: Define.
4597         Include xstrtoul.h.
4598         (string_to_number): Remove function.
4599         (check_for_offset): Use xstrtoul instead of string_to_number.
4600         (parse_repeat_count): Likewise.
4601         (parse_patterns): Likewise.
4602         (main): Likewise.
4604 Wed Nov 22 23:12:47 1995  Jim Meyering  (meyering@comco.com)
4606         * Makefile.in (all et. al.): If make was invoked with -k and a
4607         sub-make fails, fail after the loop rather than exiting right away.
4608         Otherwise, make's -k option could be ineffective.
4610 Sat Nov 18 12:04:30 1995  Jim Meyering  (meyering@comco.com)
4612         * src/Makefile.in (version.c): Depend on ../VERSION, not Makefile.
4614         Update for autoconf-2.5:
4615         * src/Makefile.in (libdir): Set to @libdir@.
4616         (bindir): Set to @bindir@.
4617         * doc/Makefile.in (infodir): Set to @infodir@.
4618         * man/Makefile.in (exec_prefix): Remove it.
4619         (mandir): Set to @mandir@.
4620         (bindir): Remove it.
4622 Thu Nov 16 21:25:45 1995  Jim Meyering  (meyering@comco.com)
4624         * Makefile.in (default): New default target.  Depend on `all' to
4625         work around bug in AIX-3.2.5's /bin/make.  Reported by Andreas Luik
4626         <luik@isa.de>.
4628 Wed Nov 15 23:48:31 1995  Jim Meyering  (meyering@comco.com)
4630         * mkdep-Makefile (.deps/empty.P): Depend on BUILT-HEADERS.
4632         * aclocal.m4 (jm_PROG_C_MKDEP): Rename from jm_PROG_MKDEP.
4633         * src/Makefile.in (C_MKDEP): Rename from MKDEP.
4634         * lib/Makefile.in (C_MKDEP): Likewise.
4635         * mkdep-Makefile (C_MKDEP): Likewise.
4636         Add comments.
4638         * csplit.c [__P]: Don't define it here.
4639         * pr.c [__P]: Don't define it here.
4640         * fmt.c [__P]: Don't define it here.
4641         * system.h [__P]: Define it here.
4643         * aclocal.m4 (jm_AUTODEPS): Rename from jm_WITH_AUTODEPS.
4644         Revamp, with suggestions from Franc,ois Pinard.
4645         (jm_WITH_GNU_MAKE): New macro.
4646         (jm_PROG_MKDEP): New macro.
4647         * configure.in (jm_PROG_MKDEP): Use it.
4648         * src/Makefile.in (MKDEP): Set it.
4649         * lib/Makefile.in (MKDEP): Likewise.
4650         * mkdep-Makefile: Use MKDEP, not DEP_CC.
4651         (DEP_CFLAGS): Remove it.
4653 Tue Nov 14 23:10:54 1995  Jim Meyering  (meyering@comco.com)
4655         * sort.c: Add support for sorting numbers in scientific notation.
4656         Include xstrtod.h.
4657         (struct keyfield): Add field: general_numeric.
4658         (usage): Describe -g option.
4659         (general_numcompare): New function.
4660         (keycompare): Use new comparison function when general_numeric
4661         flag is set.
4662         (set_ordering): Honor `g' flag.
4663         (main): Initialize and use new field.
4664         From Marcus Daniels <marcus@sysc.pdx.edu>.
4666         * configure.in (AC_REPLACE_FUNCS): Add strtod.
4667         * lib/Makefile.in (SOURCES): Add xstrtod.c.
4668         (OBJECTS): Add xstrtod.o.
4669         (DISTFILES): Add xstrtod.h.
4671         * csplit.c (cleanup): Don't exit.
4672         (interrupt_handler): Rewrite to reset default signal handler
4673         then repost caught signal.
4674         (xmalloc, xrealloc, read_input, write_to_file, handle_line_error,
4675         process_line_count, process_regexp, create_output_file,
4676         close_output_file): Call cleanup_fatal, not cleanup.
4677         Add const attribute to lots of parameters.
4678         (cleanup_fatal): Renamed from cleanup.  Call cleanup, then exit.
4679         Update callers.
4681         * tac.c: (cleanup): Don't exit.
4682         (cleanup_fatal): New function.  Call cleanup, then exit.
4683         (sighandler): New function.
4684         (cleanup_fatal): Renamed from cleanup.  Call cleanup, then exit.
4685         Update callers.
4686         (tac_stdin): Set up sighandler as signal handler, not `cleanup'.
4688 Sat Nov 11 15:46:02 1995  Jim Meyering  (meyering@comco.com)
4690         * od.c (skip): Cast fseek's offset argument to `long'.
4691         Erik Bennett <bennett@cvo.oneworld.com> reported that this is
4692         necessary on BSDI systems.  And if offset doesn't fit in a long,
4693         then try using lseek instead.
4695         * sort.c (xmalloc): Declare static.
4696         (xrealloc): Likewise.
4698         * tac.c (cleanup): Add signal number parameter.
4699         Update callers.
4701         * cat.c (main): Don't die when dev/ino of input and output are
4702         the same and the file descriptors correspond to stdin and stdout.
4703         This is necessary on at least Digital UNIX (aka OSF1) 3.2C.
4704         Otherwise, running `cat << X > $$' would fail with `cat: -: input
4705         file is output file'.  From Jarkko Hietaniemi <jhi@epsilon.hut.fi>.
4707         * Makefile.in (DISTFILES): Add @README_ALPHA@.
4708         (config.status) Depend on VERSION.
4709         * configure.in: Set README_ALPHA if the version number ends in [a-z].
4711 Fri Nov 10 21:13:42 1995  Jim Meyering  (meyering@comco.com)
4713         * fold.c (usage): Clarify meaning of --spaces.  From Karl Berry.
4715         src/Makefile.in (.c._c): Don't redirect directly to $@.
4716         (._c._o, .c._o): Remove temporary src file.
4718 Tue Nov  7 23:55:24 1995  Jim Meyering  (meyering@comco.com)
4720         * VERSION: New file.
4721         * configure.in (VERSION): New variable.
4722         (PACKAGE): New variable.
4724         * Makefile.in (DISTFILES): Add VERSION.
4725         (distdir): Use @PACKAGE@-@VERSION@, not distname.
4726         Remove all references to distname.
4727         * src/Makefile.in (version.c): Generate it.
4728         (SOURCES): Remove now-generated version.c.
4729         (distclean): Delete version.c.
4730         * doc/Makefile.in (version.texi): Use @PACKAGE@-@VERSION@,
4731         not version.c
4733         * */Makefile.in (distdir): Use @PACKAGE@-@VERSION@, not distname.
4734         Remove all references to distname.
4736         * split.c: New option: --verbose.
4737         (main): Recognize it.
4738         (usage): Document it.
4739         From Marty Leisner <leisner@sdsp.mc.xerox.com>.
4741 Sun Nov  5 06:59:27 1995  Jim Meyering  (meyering@comco.com)
4743         * src/Makefile.in: Reflect protoization of csplit.c, fmt.c, pr.c,
4744         and unexpand.c.
4746         * pr.c: Protoize.
4747         (store_columns): Remove spurious 2nd argument in call to read_line.
4748         [__P]: Define.  Use it in prototyped forward decls.
4750         * csplit.c: Move prototypes after struct declarations.
4751         Remove prototypes for xmalloc, xrealloc.
4752         Protect prototypes with __P.
4753         (new_control_record): Cast arg 1 to realloc.
4755         * fmt.c [__P]: Test PROTOTYPES, not __STDC__.
4756         Protoize.
4758 Sat Nov  4 23:51:30 1995  Jim Meyering  (meyering@comco.com)
4760         * csplit.c (close_output_file): Set output_stream to NULL so we
4761         don't recurse endlessly between this function and cleanup.
4763         * unexpand.c: Reorder functions to obviate forward dcls.  Remove
4764         forward dcls.  Protoize.  Add `const' attribute to some parameters.
4766 Mon Oct 30 23:15:56 1995  Jim Meyering  (meyering@comco.com)
4768         * wc.c: Reorder functions to obviate forward dcls.  Remove
4769         forward dcls.  Protoize.  Add `const' attribute to some parameters.
4770         * uniq.c: Likewise.
4771         * split.c: Likewise.
4773         * split.c (isdigits, convint): Remove these.
4774         (main): Use xstrtol instead.
4776 Sun Oct 29 14:04:36 1995  Jim Meyering  (meyering@comco.com)
4778         * paste.c (main): Move function body to end of file.
4779         Remove forward dcls and protoize.
4780         * sum.c (main): Likewise.
4781         * nl.c: Protoize.  Reorder functions to obviate forward dcls.
4782         Remove forward dcls.
4783         * tac.c: Likewise.
4784         * src/Makefile.in (OBJECTS): Reflect that all of the above
4785         now use prototypes.
4787         * sum.c (bsd_sum_file): Give file name parameter const attribute.
4788         (sysv_sum_file): Likewise.
4790         * tac.c (xwrite): Give output buffer parameter const attribute.
4791         (output): Likewise for both parameters.
4792         (tac): Likewise for file name parameter.
4793         (tac_file): Likewise.
4795 Sat Oct 28 16:02:39 1995  Jim Meyering  (meyering@comco.com)
4797         * md5sum.c (md5_check): Use the same message format when there is
4798         a single file and it gets a read error or checksum mismatch as when
4799         there are more.  Write that warning to standard error, not standard
4800         output.  Suggestions from Greg Troxel (gdt@b-sgi.bbn.com).
4802 Thu Oct 26 00:11:35 1995  Jim Meyering  (meyering@comco.com)
4804         * sort.c (xtmpfopen): New function to set proper permissions on
4805         temporary files.  Use it instead of xfopen. Reported by Erik Corry
4806         (erik@kroete2.freinet.de).
4808 Mon Oct 23 23:17:04 1995  Jim Meyering  (meyering@comco.com)
4810         * aclocal.m4 (jm_WITH_AUTODEPS): New directive.
4811         * configure.in: Use it.
4813         * lib/Makefile.in (INCLUDE, COMPILE): New variables.
4814         (.c.o): Rewrite to be more like src/Makefile.in.
4816         * src/Makefile.in (distclean): Remove .deps.
4817         Include @top_srcdir@/mkdep-Makefile.
4819         * mkdep.Makefile: New file.
4820         * Makefile.in (DISTFILES): Add mkdep-Makefile.
4821         * doc/Makefile.in (mostlyclean): Also remove *.info.
4823 Thu Oct 19 17:38:28 1995  Jim Meyering  (meyering@comco.com)
4825         * od.c: Indent cpp directives.
4827         * tr.c (BEGIN_STATE): Use INT_MAX - 1 so as not to interfere
4828         with large repeat counts.
4829         (struct E_string): New struct.
4830         (find_closing_delim): Take E_string arg rather than char* and length.
4831         (find_bracketed_repeat): Likewise.
4832         (star_digits_closebracket): New function.
4833         (append_char_class): No longer give diagnostic.
4834         (append_equiv_class): Likewise.
4835         (build_spec_list): Give them here instead, allowing string1 like
4836         [:*][:upper:] that got errors before.
4837         Take E_string arg rather than char*.
4838         Convert switch stmts into if-then so as to use ES_MATCH.
4840 Tue Oct 17 22:48:00 1995  Jim Meyering  (meyering@comco.com)
4842         * cat.c: Protoize.  Reorder functions to obviate forward dcls.
4843         Remove forward dcls.
4844         * expand.c: Likewise.
4845         * fold.c: Likewise.
4846         * head.c: Likewise.
4847         * od.c: Likewise.
4848         * sort.c: Likewise.
4849         * tail.c: Likewise.
4851         * src/Makefile.in (OBJECTS): Reflect that all of the above
4852         now use prototypes.
4854         * head.c: Add `const' attribute to dcls of lots of formals.
4856         * sort.c: Add `const' attribute to dcls of lots of formals.
4857         Move struct dcls to precede dcls of file-scope variables.
4858         (monthtab, keyhead): Separate variable dcls from type dcls.
4860 Fri Oct 13 20:38:39 1995  Jim Meyering  (meyering@comco.com)
4862         * join.c (add_field_list): Allow SPACE and TAB as well as `,' as
4863         list item separators, per POSIX spec.
4864         (prjoin): Rewrite loop that iterates over field specs.
4865         Handle case in which file spec is 0.
4867 Sun Oct  8 22:41:15 1995  Jim Meyering  (meyering@comco.com)
4869         * strpbrk.c: New file.
4870         * lib/Makefile.in (SOURCES): Add strpbrk.c.
4871         Remove bcopy.c.
4873 Sat Oct  7 22:27:01 1995  Jim Meyering  (meyering@comco.com)
4875         * join.c (add_field): No longer return a value.
4876         (decode_field_spec): New function.
4877         (add_field_list): Rewrite to be more strict.
4878         Before, `,1.2' was accepted as valid.
4879         (main): Use xstrtol instead atoi.
4880         Combine nearly identical -a and -v cases.
4881         Close input files.
4883 Fri Oct  6 23:10:01 1995  Jim Meyering  (meyering@comco.com)
4885         * join.c (main): Report `too few/many non-option arguments'
4886         then print --help output rather than just the latter.
4887         Properly interpret obsolescent usage like `join -o 2.1 2.1 2.2'.
4888         (usage): Describe POSIX -1, -2 options and deprecate -j* ones
4890         * join.c (usage): Move to precede all other functions.
4892         * join.c: Protoize.
4894 Tue Oct  3 22:44:05 1995  Jim Meyering  (meyering@comco.com)
4896         * csplit.c, sort.c, tac.c: Test SA_INTERRUPT, not _POSIX_VERSION,
4897         to determine whether `sigaction' functions are available.
4898         Reported by Paul Nevai <nevai@ops.mps.ohio-state.edu>.
4899         Fix suggested by Karl Berry.
4901         * md5sum.c (main): Declare counter, N_STRINGS, to be an integral
4902         type, not `char'.
4904         * cut.c: Convert many declarations using `int' to use `unsigned int'
4905         to avoid warnings from `gcc -Wall' about comparing signed and
4906         unsigned types.
4907         (set_fields): Use memset (not open coded loop) to initialize array.
4909 Thu Sep 28 23:16:05 1995  Jim Meyering  (meyering@comco.com)
4911         * Version 1.13.
4913         * Makefile.in (DISTFILES): Remove README.alpha for major release.
4915         * od.c (decode_one_format): Remove spurious semicolon.
4916         From John Kodis.
4918 Tue Sep 26 23:05:01 1995  Jim Meyering  (meyering@comco.com)
4920         * man/Makefile.in (install-data, uninstall): Use sed not basename.
4921         The GNU Coding Standard suggests that only a select set of
4922         relatively standard utilities be used in Makefiles.  basename is
4923         not among them.  Suggested by Ulrich Drepper.
4925 Sun Sep 24 08:36:47 1995  Jim Meyering  (meyering@comco.com)
4927         * cksum.c: Protoize.
4928         * cut.c: Protoize.
4930         * src/Makefile.in (OBJECTS): Reflect that cksum.c and cut.c use
4931         prototypes.
4932         (cksum): Depend on cksum$O.
4933         (cut): Depend on cut$O.
4935 Sat Sep 23 15:43:46 1995  Jim Meyering  (meyering@comco.com)
4937         * Version 1.12.2.
4939         * Makefile.in (DISTFILES): Add README.alpha.
4941         * lib/Makfile.in: (GETOPT, MEMCHR, REGEX): New variables.
4942         (OBJECTS): Use them instead of hardcoding object file names.
4943         Suggested by Ulrich Drepper.
4945         * md5sum.c (md5_check): Distinguish between open/read failure
4946         and checksum mismatch.
4948 Mon Sep 18 23:15:05 1995  Jim Meyering  (meyering@comco.com)
4950         * md5sum.c: Protoize.
4951         * src/Makefile.in (OBJECTS): Change md5sum.o to md5sum$O.
4952         (join.o, md5sum$O, sort.o) Depend on ../lib/long-options.h.
4953         (md5sum): Depend on md5sum$O.
4955         * md5sum.c (main, usage): Remove -h, -s, -v short options.
4956         Rename --verbose to --warn, --quiet to --status.
4957         (main): Handle --help and --version using parse_long_options.
4958         (md5_check): Check ferror.
4960         * sort.c (tempname): Replace `16' with a more readable expansion.
4961         Make sure that counter never exceeds 99999.
4962         (checkfp): Rearrange loop to avoid duplicate test.
4963         Move a couple dcls from function scope into inner block.
4965 Tue Aug  8 21:49:27 1995  Jim Meyering  (meyering@comco.com)
4967         * md5sum.c (main): Fail if either --verbose or --quiet is specified
4968         when not verifying checksums.
4970         * md5sum.c (md5_check): Fail if no valid line is found.
4971         Don't use the word `fail' unless there were failures --
4972         instead, say `all N tests passed.'
4974         * md5sum.c (main) [handling --string option]: Don't output
4975         nonstandard `b' binary flag.  From Greg Troxel (gdt@bbn.com).
4976         * md5-test.rfc: Remove now-inconsistant `b' marker.
4977         (usage): Clarify help message.  With suggestions from Greg Troxel.
4979 Mon Aug  7 23:27:54 1995  Jim Meyering  (meyering@comco.com)
4981         * sort.c (mergefps) [lint]: Initialize SAVEALLOC to avoid spurious
4982         compiler warning.  From Ulrich Drepper.
4984         * pr.c (read_line) [lint]: Initialize CHARS to avoid spurious
4985         compiler warning.  From Ulrich Drepper.
4987         * Makefile.in (DISTFILES): Don't distribute unneeded COPYING.LIB.
4988         From Franc,ois.
4990 Mon Aug  7 00:02:59 1995  Jim Meyering  (meyering@comco.com)
4992         * system.h (_): Define macro -- as empty for now.
4993         * src/*.c: Annotate localizable strings with _(...).  From Franc,ois.
4995 Sat Aug  5 23:51:25 1995  Jim Meyering  (meyering@comco.com)
4997         * Version 1.12.1.
4999         * configure.in: Add fp_C_PROTOTYPES.
5001 Fri Aug  4 23:21:46 1995  Jim Meyering  (meyering@comco.com)
5003         * src/Makefile.in (DISTFILES): Include ansi2knr.c and ansi2knr.1.
5004         Add suffixes, dependencies, and rules to convert ANSI source to K&R
5005         when required.  Mark tr.o and comm.o as the only such files (for now).
5007         * tr.c: Protoize.
5008         * comm.c: Protoize.
5010         * Makefile.in (DISTFILES): Add aclocal.m4 and acconfig.h.
5011         (configure): Depend on aclocal.m4.
5012         (stamp.h.in): Depend on aclocal.m4 and acconfig.h.
5014 Sun Jul 30 00:01:58 1995  Jim Meyering  (meyering@comco.com)
5016         * md5sum.c (md5_check): Use getline instead of fgets.
5018         * lib/Makefile.in: (SOURCES): Add getline.c.
5019         (OBJECTS): Add getline.o.
5020         (DISTFILES): Add getline.h.
5021         (getline.o): Depend on getline.h.
5023         * md5.c [memcpy]: Define to bcopy if needed.
5024         (md5_buffer): Explicitely cast SWAP expressions to unsigned
5025         to avoid warning.
5027         * lib/Makefile.in (strtoul.o): Depend on strtol.c.
5029         * sort.c (check): Print `disorder on...' message on standard error,
5030         not stdout.  This is a minor concession to POSIX which says
5031         `no output shall be produced...'.
5033         * sort.c (main): Fix -k so it works. -k 2,3 was being treated
5034         like -k 2.  Reported by Marcus Daniels <marcus@sysc.pdx.edu>.
5036 Wed Jul 26 22:54:48 1995  Jim Meyering  (meyering@comco.com)
5038         * man/Makefile.in (install, uninstall): Strip off `.1', not just `1'
5039         before applying $(transform) to manual name.  From Karl Berry.
5041         * md5sum.c (have_read_stdin): New global variable.
5042         (md5_file, md5_check): Set it.
5043         (main): Use it.
5045         * md5sum.c [OPENOPTS]: Depend explicitly on BINARY.
5046         (md5_file): Take a new parameter, MD5_RESULT, and no longer
5047         generate output.
5048         (md5_check): Invoke md5_file instead of calling fopen directly.
5049         When giving a diagnostic for a line with invalid format, also report
5050         the line number.
5051         (main): Generate output after a successful md5_file call.
5052         [in many places]: Upon detection of an error, rather than exiting
5053         immediately, issue a diagnostic, note that an error occurred and
5054         exit later.
5056 Mon Jul 24 21:48:26 1995  Jim Meyering  (meyering@comco.com)
5058         * tail.c (tail_bytes) [from_start]: For regular files, seek
5059         relative to the initial input file pointer position, not
5060         necessarily from the beginning of the file.
5061         [!from_start]: Don't back up past the initial position of the
5062         input file pointer.
5063         (tail_lines): Call file_lines only if FD refers to a regular file
5064         with its file pointer positioned at beginning of file.  Otherwise,
5065         call pipe_lines.  This is a kludge.  Once there's a decent test
5066         suite, fix this properly.
5067         Before, (echo 1; echo 2) > k; sh -c 'read x; tail' < k
5068         would output both lines of the input file even though the first had
5069         already been read.  Reported by John Roll (john@panic.harvard.edu).
5071         * md5sum.c [_LIBC || STDC_HEADERS] (TOLOWER): Define to tolower.
5073         * csplit.c (main): When too few arguments are given, don't just
5074         issue the usage message; also report why.
5076 Sat Jul 22 00:16:01 1995  Jim Meyering  (meyering@comco.com)
5078         * md5sum.c (md5_check): New function -- extracted from main.
5080 Fri Jul 21 01:21:49 1995  Jim Meyering  (meyering@comco.com)
5082         * md5sum.c (md5_file): New function -- extracted from main.
5083         (main): Call the new function instead of doing all that in an
5084         if-stmt. Always use "%s" format rather than raw filename as
5085         format argument in printf-style functions like error.  Otherwise,
5086         filenames containing `%' are likely to lose.
5087         Remove all mention of `old format'.
5088         (split_3): No longer parse the `new format.'  There is only one
5089         valid format now: the compatible one.
5091         * lib/Makefile.in: (SOURCES): Add md5.c.
5092         (OBJECTS): Add md5.o.
5093         (DISTFILES): Add md5.h.
5094         (md5.o): Depend on md5.h.
5096         * system.h [!EXIT_FAILURE, !EXIT_SUCCESS]: Define them.
5097         * lib/md5.c (md5_stream): Check for read failure and return
5098         indication of success rather than second argument.
5099         * lib/md5.h (md5_stream): Update prototype.
5100         [__P]: Define macro.
5101         * md5sum.c: Use EXIT_FAILURE and EXIT_SUCCESS.
5102         (main): Report an error if md5_stream fails.  Otherwise, running
5103         `md5sum dir-on-mounted-filesystem' always reported the checksum
5104         for an empty file.  Now it gets the `is a directory' error.
5105         Greg McGary (gkm@magilla.cichlid.com) reported that the released
5106         version got stuck in an infinite loop with such arguments.
5108         * lib/md5.c: New file.
5109         * lib/md5.h: New file.
5110         * md5sum.c: Rewritten to use library interface.
5111         From Ulrich Drepper.
5113 Sun Jul 16 18:42:34 1995  Jim Meyering  (meyering@comco.com)
5115         * configure.in: Add AC_C_INLINE: md5sum.c uses inline keyword.
5117 Tue Jul 11 21:56:02 1995  Jim Meyering  (meyering@comco.com)
5119         * md5sum.c Add #else block after #ifdef VMS.
5120         (main): Rename local variable.
5121         Detect and report failed fclose calls on stdout and checkfile_stream.
5123         * tr.c (unqote): Comment out unreachable break stmts.
5124         (append_range): Declare FIRST and LAST parameters to be unsigned int,
5125         not size_t.
5126         (find_closing_delim): Clean up interface, separating boolean success
5127         indicator and index.
5128         (find_bracketed_repeat): Likewise.
5129         (build_spec_list): Adapt to use new interfaces.
5130         Declare CLOSING_DELIM_IDX and CLOSING_BRACKET_IDX to be of
5131         type size_t, not int.
5132         (main): Declare NR and CHARS_READ to be of type long, not int.
5134         * sort.c (main): Comment out unreachable break stmt.
5136         * tail.c (tail): Explicitly cast to long the N_UNITS argumennt in
5137         call to tail_lines.  Otherwise, NetBSD lost because N_UNITS (of type
5138         off_t, a 64-bit type on NetBSD) wasn't converted to the target type,
5139         long.  Reported by Dan Hagerty (hag@gnu.ai.it.edu).
5141         * comm.c: Reorder functions so main is last, so no forward dcls
5142         are needed.
5144 Sun Jul  9 11:41:15 1995  Jim Meyering  (meyering@comco.com)
5146         * sort.c (main): When using obsolescent +pos -pos syntax, allow
5147         omission of field spec only when character offset is specified.
5148         Otherwise, -. +. would be accepted.
5150 Sat Jul  8 13:48:06 1995  Jim Meyering  (meyering@comco.com)
5152         * sort.c (main): Allow field spec, M, to be omitted in +M.N or -M.N
5153         position specification.  For compatibility with existing practice
5154         (what vendors?), omitting M is now equivalent to specifying `0' for M,
5155         but only when using the +pos -pos syntax, not with the -k option.
5156         From Rick Sladkey (jrs@world.std.com).
5158 Thu Jul  6 23:44:20 1995  Jim Meyering  (meyering@comco.com)
5160         * od.c (dump): Correct loop-termination criterion.
5161         Before, running `printf 1234| ./od --width=4 --read-bytes=4'
5162         printed output for 8 bytes -- the last four were garbage.
5163         This happened only when the dump limit, N, was specified (with
5164         --read-bytes=N) and N was a multiple of bytes_per_block
5165         (usually 16, but 4 in this example).  From Andreas Schwab.
5167 Sun Jul  2 22:12:40 1995  Jim Meyering  (meyering@comco.com)
5169         * lib/Makefile.in (check): Depend on libtu.a.
5171         * md5sum.c (split_3): Rewrite to parse Plumb/Lankester format as well.
5172         (main): Print each sum line in (de facto) standard Plumb/Lankester
5173         format.
5174         New option: --quiet.
5175         Check option no longer takes an argument.
5176         When checking, exit status reflects success.
5178 Sat Jun 24 16:18:01 1995  Jim Meyering  (meyering@comco.com)
5180         * md5sum.c [__GNUC__]: Don't conditionalize use of "inline".
5181         Autoconf (via config.h) defines it away for compilers that don't
5182         grok it.
5184         * cat.c, comm.c, join.c, sort.c, uniq.c: Undefine min/max before
5185         defining to avoid redefinition warning on some systems.
5187         * csplit.c (read_input): Rename paramater MAX to MAX_N_BYTES.
5188         This avoids potential conflict with max macro from some system's
5189         header files when using bad pre-ANSI compilers.
5191         * uniq.c (usage): Fix typo in text of --help output.
5192         From Steve McConnel <steve@acadcomp.sil.org>
5194         * md5sum.c [uint32]: When testing for 32-bit arithmetic type,
5195         also check `unsigned long', as a concession to systems with
5196         int's smaller than 32 bits.
5198         * configure.in (AC_REPLACE_FUNCS): Remove memcmp (again!) since
5199         AC_FUNC_MEMCMP already handles it.  This avoids warnings from
5200         ranlib on nextstep systems.  From Kaveh Ghazi.
5202         * csplit.c (interrupt_handler): Declare to have a single integer
5203         parameter.  Otherwise, some compilers fail with a type mismatch
5204         error in sa_handler assignment.
5206         * fmt.c [word]: Redefine.  Otherwise, systems (Unicos for one) with
5207         headers that typedef `word' get syntax errors because of the
5208         variable by the same name.
5210         * join.c [join]: Redefine to avoid conflict with prototype in some
5211         system header file.  Also for Unicos.
5213         * md5sum.c (main): Remove spurious colon in getopt spec string.
5214         From Ken Pizzini <kenp@spry.com>.
5216 Tue Jun 20 06:59:16 1995  Jim Meyering  (meyering@comco.com)
5218         * md5sum.c (md5_file): Initialize two elements of LEN portably,
5219         rather than with ANSI aggregate initialization.  Reported by
5220         Edzer Pebesma <Edzer.Pebesma@rivm.nl>.
5222 Sun Jun 18 09:15:57 1995  Jim Meyering  (meyering@comco.com)
5224         * Version 1.12.
5226         * md5sum.c (process_buffer): Copy values from struct into
5227         individual local variables before performing computation on them,
5228         then copy results back into returned struct.  Solely for better
5229         optimization by compilers that can't keep struct members in
5230         registers.  From Ulrich Drepper.
5232 Thu Jun 15 22:09:14 1995  Jim Meyering  (meyering@comco.com)
5234         * md5sum.c: Remove unnecessary uses of `defined' in #if* tests.
5235         Don't use #elif.  Some older compilers don't grok it.
5236         (split_3): New function to parse out sum, flag, and filename
5237         when reading check file.
5238         (hex_digits): Remove length parameter since string parameter is
5239         now nul-terminated.
5240         (main): Don't allocate separate arrays for filename and sum
5241         when checking.  Get pointers into line buffer with split_3 instead
5242         of using sscanf.
5243         (main): Treat `no file args' just like `-' when not checking
5244         or using strings.
5245         (hex_digits): Unprotoize.
5247         * md5sum.c (main): Don't use a separate loop to convert to lower
5248         case.  Suggested by Ulrich Drepper.
5249         (CLOSE): New macro.
5250         (md5_file): Use it.
5251         From Ulrich Drepper.
5253         * md5sum.c: Don't include values.h.
5254         [__P]: Undefine it.
5256         * md5sum.c: [UNIX || unix]: Also test __UNIX__, __unix__,
5257         and _POSIX_VERSION.  Reported by Arne H. Juul.
5259 Tue Jun 13 21:20:10 1995  Jim Meyering  (meyering@comco.com)
5261         * tr.c [NDEBUG]: Define it to disable assertions.  Some systems
5262         have a broken <assert.h> header.
5263         (is_char_class_member): Set a variable in each branch of switch
5264         stmt and return that value after the switch (rather than returning
5265         directly from every branch).
5266         (unquote): More int->size_t changes.
5267         (build_spec_list): More int->size_t changes.
5268         Be very careful about comparison now that variables are unsigned:
5269         Use i + 2 < len rather than i < len - 2.  The latter didn't work
5270         for len < 2.  Caught early thanks to a thorough regression test
5271         suite.
5273 Mon Jun 12 23:07:59 1995  Jim Meyering  (meyering@comco.com)
5275         * sort.c (xfclose): Don't try to flush stdin, only stdout.
5276         Otherwise, at least Ultrix-4.3's fflush would return EOF.
5277         Reported by Jim Blandy (jimb@cyclic.com).
5279         * tr.c (non_neg_strtol): Don't compare signed and unsigned.
5280         [struct Spec_list] (indefinite_repeat_element): New member.
5281         Use size_t rather than int or unsigned long where reasonable.
5282         (get_spec_status): Make interface cleaner.
5283         (get_s1_spec_status): New function.
5284         (get_s2_spec_status): New function.
5285         (validate): Use new functions instead of get_spec_status.
5287 Sun Jun 11 00:39:50 1995  Jim Meyering  (meyering@comco.com)
5289         * md5sum.c: New file.  From Ulrich Drepper.
5290         * md5-test.rfc: New file.
5291         * Makefile.in: (PROGS): Add md5sum.
5292         (check): Run a recursive make in each subdirectory.
5293         * man/Makefile.in: (MANFILES): Add md5sum.1.
5294         * src/Makefile.in: (SOURCES): Add md5sum.c.
5295         (OBJECTS): Add md5sum.o.
5296         (PROGS): Add md5sum.
5297         (check): Add basic checks for md5sum.
5298         (md5sum): Add dependency and link rule.
5299         (DISTFILES): Add md5-test.rfc.
5301         * tr.c (look_up_char_class, append_char_class, append_equiv_class):
5302         Use const attribute when appropriate.
5304 Sun May 28 14:48:58 1995  Jim Meyering  (meyering@comco.com)
5306         * join.c: Overhauled to make -a1 and -a2 options work.
5307         Passed all tests in a fairly thorough test suite.
5308         Reported by Michael Hasselberg (mikelh@zonta.ping.de).
5310 Sat May 27 00:35:47 1995  Jim Meyering  (meyering@comco.com)
5312         * tail.c (main): Remove dcl of and statements that set now-unused
5313         variable.
5315         * system.h [!STDC_HEADERS && HAVE_MEMORY_H]: Include memory.h.
5316         Without this, SunOS doesn't get type for memchr.
5317         Reported by Kaveh Ghazi.
5319 Thu May 25 00:06:50 1995  Jim Meyering  (meyering@comco.com)
5321         * tail.c (tail_lines): Change one more `long' to `off_t'.
5322         Otherwise, tail didn't work on NetBSD.  From Arne H. Juul.
5324         * csplit.c [struct control]: Change type of `repeat' to unsigned
5325         long to avoid conversion warning.
5327 Sun May 21 07:50:00 1995  Jim Meyering  (meyering@comco.com)
5329         * Makefile.in (.PHONY): TAGS is not a phony target.  From Franc,ois.
5331         * xstrtol.c (__strtol): Remove prototype altogether.
5332         Move inclusion of xstrtol.h back so that it follows system headers.
5334         * Version 1.11.2.
5336 Sat May 20 06:44:14 1995  Jim Meyering  (meyering@comco.com)
5338         * join.c (ADD_FIELD): Declare in K&R style, not ANSI.
5339         From Kaveh Ghazi.
5341         * xstrtol.c: Define NDEBUG for systems with losing assert.h.
5342         (__strtol): Add __unsigned to prototype and use __P.
5343         Move inclusion of xstrtol.h to precede prototype.
5344         From Kaveh Ghazi.
5346         * memmove.c: Include config.h for definition of const.
5347         From Kaveh Ghazi.
5349         * All Makefile.in (install-exec, install-exec): New targets.
5350         From Karl Berry.
5352         * tr.c (look_up_char_class): Take a string length argument -- required
5353         because the argument is a string that is *not* NUL-terminated.
5354         Use strncmp, not strcmp and add string lengths comparison.
5355         (append_char_class): Update caller.  Before this change,
5356         tr '[:upper:]' '[:lower:]' read one uninitialized byte.
5357         From Andreas Schwab.
5359         * split.c (next_file_name): Move dcls of file-scope variables into
5360         this function.  Don't rely on arithmetic being two's complement.
5362         * paste.c [CLOSED, ENDLIST]: Don't cast constants to FILE pointers.
5363         Instead, declare two FILE structs and use their addresses.
5365         * csplit.c (record_line_starts): Remove set-but-not-used,
5366         file-scope variable.
5368 Sat May 13 08:57:20 1995  Jim Meyering  (meyering@comco.com)
5370         * all source files (usage): Include one- or two-line synopsis
5371         in --help output.  From Karl Berry.
5373         * lib/Makefile.in [.c.o]: Remove -I. since safe-l?stat.h are no
5374         longer used.
5376 Wed May 10 22:26:35 1995  Jim Meyering  (meyering@comco.com)
5378         * Version 1.11.1
5380 Sun May  7 13:35:49 1995  Jim Meyering  (meyering@comco.com)
5382         * all Makefile.in (maintainer-clean): Renamed from realclean
5383         per GNU Standards.
5385 Thu May  4 23:15:58 1995  Jim Meyering  (meyering@comco.com)
5387         * sort.c (main): Use stat, not safe_stat.  The latter was unnecessary.
5388         Don't include safe-stat.h.
5390         * lib/Makefile.in (DISTFILES): Remove safe-xstat.hin.
5391         Remove all associated rules.  safe-l?stat.h are no longer used.
5393         * sort.c Don't hard-code /tmp.
5394         [DEFAULT_TMPDIR]: Use this instead.
5395         * tac.c (save_stdin): Likewise.
5397         * sort.c (set_ordering): Properly parse arguments like `+x.yn'.
5398         Reported by John Salmon (johns@mullet.anu.edu.au).
5399         Patch from Mike Haertel.
5401 Wed Apr 26 23:48:13 1995  Jim Meyering  (meyering@comco.com)
5403         * sort.c (tempname): AND-off high bits of pid so that its decimal
5404         string representation is no longer than five digits.
5405         From Hans Verkuil (hans@wyst.hobby.nl).
5407 Thu Apr 20 23:09:33 1995  Jim Meyering  (meyering@comco.com)
5409         * expand.c (add_tabstop): Give correct size when reallocating
5410         tab_list buffer.  From Geoff Odhner (geoff@franklin.com).
5411         Reproduce with expand --t=`perl -e "print join (',', (1..300));"`.
5413 Tue Apr 18 22:57:43 1995  Jim Meyering  (meyering@comco.com)
5415         * configure.in: (AC_OUTPUT): Use echo, not date, to avoid creating
5416         unnecessary conflicts for people using version control software
5417         like RCS and CVS.
5418         (AC_ARG_PROGRAM): Use it.
5420 Thu Apr 13 23:22:57 1995  Jim Meyering  (meyering@comco.com)
5422         * head.c: Remove block of redundant comments describing options.
5423         (usage): Remove reference to -l option.  It's not valid.
5425         * od.c (write_block): Declare index I as unsigned int, not int.
5426         (get_lcm): Likewise.
5427         (dump_strings): Likewise.
5428         (main): Likewise.
5429         (dump): Cast BYTES_PER_BLOCK to off_t in MIN expression.
5430         (dump_strings): Declare bufsize to be of type size_t, not int.
5432         * split.c (next_file_name): Don't reuse X as an index.
5433         Declare new variable I instead.
5435 Sat Mar 25 15:07:23 1995  Jim Meyering  (meyering@comco.com)
5437         * csplit.c: Declare as `unsigned int' all variables that were
5438         just `unsigned'.
5439         (make_filename): Change type of arg to unsigned int.
5440         (split_file): Change type of indices to unsigned int.
5442 Thu Mar 16 22:05:05 1995  Jim Meyering  (meyering@comco.com)
5444         * od.c (main): Detect and fail when argument to -N is too large
5445         to fit in an off_t.
5447 Sun Mar 12 12:02:39 1995  Jim Meyering  (meyering@comco.com)
5449         * configure.in (AC_REPLACE_FUNCS): Add memcmp.c.
5450         Remove check for sizeof long.
5452         * linebuffer.h: Undefine __P before defining it.
5453         * long-options.h: Likewise.
5454         * xstrtol.h: Likewise.
5456         * memcpy.c: New file.
5457         * lib/Makefile.in (SOURCES): Add memcpy.c.
5459 Fri Mar 10 21:14:11 1995  Jim Meyering  (meyering@comco.com)
5461         * src/*.c: Update Copyright dates.
5463 Sat Feb 11 07:31:08 1995  Jim Meyering  (meyering@comco.com)
5465         * system.h: Remove index/rindex and bcmp/bcopy/bzero references.
5466         Separate errno declaration from STDC_HEADERS.
5468         * wc.c (wc): For efficiency, handle separately the cases in which
5469         words need not be counted.  Suggested by Karl Heuer.
5471         * wc.c (wc): Don't overcount the number of bytes when reading
5472         from a regular file on stdin with file pointer not at BOF.
5473         From Karl Heuer <karl@gnu.ai.mit.edu>.  Before, the command
5474         `(dd ibs=99k skip=1; wc -c) < /etc/group' made wc wrongly output
5475         the size of the file.  Now it outputs `0'.
5477 Sat Jan 28 07:07:23 1995  Jim Meyering  (meyering@comco.com)
5479         * cat.c (cat): Use memmove rather than bcopy.
5480         * csplit.c (load_buffer): Use memcpy rather than bcopy.
5481         (extract_regexp): Use strrchr, not rindex.
5482         * fmt.c (isopen, isclose, isperiod): Use strchr, not index.
5483         (flush_paragraph): Use memmove instead of bcopy.
5484         * fold.c (fold_file): Use memmove instead of bcopy.
5485         * od.c (decode_format_string): Use memmove instead of bcopy.
5486         [EQUAL_BLOCKS]: Use memcmp, not bcmp.
5487         (parse_old_offset): Use strchr, not index.
5488         (dump): Use memset, not bzero.
5489         * sort.c (checkfp, mergefps): Use memcpy instead of bcopy.
5490         (fillbuf): Use memmove instead of bcopy.
5491         * split.c (main): Use memset, not bzero.
5492         (line_bytes_split): Use memmove instead of bcopy.
5493         * tac.c (tac): Use memmove instead of bcopy.
5494         (output): Use memcpy instead of bcopy.
5495         * tail.c (pipe_lines, pipe_bytes): Use memcpy instead of bcopy.
5496         * tr.c (substr): Use memcpy instead of bcopy.
5497         (card_of_complement, set_initialize): Use memset, not bzero.
5499         * tr.c (substr): Don't allocate a byte for trailing NUL in result
5500         since the result needn't be NUL-terminated.  Don't NUL terminate it.
5502         * configure.in (AC_REPLACE_FUNCS): Check for memmove and memcpy,
5503         not bcopy.
5504         (AC_CHECK_FUNCS): Add strchr and strrchr.
5506         * lib/Makefile.in (SOURCES): Add memmove.c and memcpy.c.
5507         * memmove.c: New file.
5508         * memcpy.c: New file.
5510 Tue Jan 24 22:18:19 1995  Jim Meyering  (meyering@comco.com)
5512         * fmt.c (copy_rest): Replace `||' with `&&'.  Before, a paragraph
5513         not followed by a newline would be followed by data copied from
5514         uninitialized storage.  Repeat by `printf abc|fmt|od -ac'.
5515         Reported by Franc,ois Pinard.
5517         * od.c: Rename macros with FP_ prefix.  Use FLOAT_ instead.
5518         AIX-2.2.1 declares a typedef, FP_DOUBLE, that conflicted.
5519         Be careful to use off_t instead of explicit `unsigned long'.
5520         Otherwise, systems like 4.4BSD lose on calls to fseek that
5521         expect off_t (which is long long on that system).
5522         (parse_old_offset): Use xstrtoul
5523         (main): Likewise.
5525         * src/Makefile.in (od.o, tail.o): Depend on ../lib/strtol.h.
5527 Mon Dec 19 22:13:55 1994  Jim Meyering  (meyering@comco.com)
5529         * tail.c (numerous functions): Give char* filename arguments the
5530         const attribute.
5532         * lib/Makefile.in (SOURCES): Remove xwrite.c.  It was no longer used.
5533         Add xstrtol.c and xstrtoul.c.
5534         (OBJECTS): Likewise for .o files.
5535         (DISTFILES): Add error.h and xstrtol.h and xstrtoul.h.
5537         * lib/Makefile.in (DISTFILES): Remove safe-xstat.cin.
5538         (distclean): Remove references to safe-l?stat.c.
5539         Remove all related rules and dependencies.
5541         * src/Makefile.in: $(OBJECTS): Depend on ../lib/error.h.
5543 Thu Dec 15 23:14:04 1994  Jim Meyering  (meyering@comco.com)
5545         * tail.c (tail_file): Fix call to error with %s in format, but
5546         no corresponding argument.
5548         * src/*.c: Include "error.h" instead of simply declaring
5549         `void error ();'.
5550         * od.c (main): Use %lu, not %d for unsigned long.
5551         (my_strtoul, uint_fatal_error): Remove functions.  Use xstrtoul
5552         and STRTOL_FATAL_ERROR instead.
5554 Sun Dec 11 17:24:09 1994  Jim Meyering  (meyering@comco.com)
5556         * sort.c (main): Fix interpretation of field offsets when specified
5557         via -k option.  They were being interpreted as zero-indexed.  POSIX
5558         says they are 1-based indices.  From Rik Faith <faith@cs.unc.edu>.
5559         (keycompare): Don't ignore characters at the end of words when
5560         otherwise they would compare equal.  From Rik Faith.
5562         * tail.c (<most functions>): Change the type of n_units/n_lines/n_bytes
5563         to off_t because n_bytes is used as the option to fseek and off_t may
5564         be long long (e.g. on BSD4.4).  The only place where a 32-bit limit is
5565         imposed is in the string-to-integer converstion of xstrtol.
5566         (main): Use xstrtol instead of manual string to integer conversion.
5568         * csplit.c (get_format_width, get_format_prec): Use ISDIGIT instead of
5569         comparisons against '0' and '9'.
5571         * tr.c [!ULONGMAX]: Define it.
5572         [!LONGMAX]: Define in terms of ULONGMAX instead of as a 32-bit constant.
5574         * full-write.c: Declare (or not) errno based on definedness or
5575         errno, not STDC_HEADERS.
5576         * safe-read.c: Likewise.
5577         * xwrite.c: Likewise.
5579 Thu Nov 17 06:37:33 1994  Jim Meyering  (meyering@comco.com)
5581         * tail.c (dump_remainder): Flush standard output just before
5582         sleeping so that `tail -f' will output partial lines sooner.
5583         This applies only when following the end of a single file.
5584         From Leonard N. Zubkoff <lnz@dandelion.com>.
5586         * tail.c (file_lines, pipe_lines, pipe_bytes, start_bytes,
5587         start_lines, dump_remainder): Use STDOUT_FILENO instead of `1' in
5588         XWRITE calls.
5589         * tac.c (output): Use STDOUT_FILENO instead of `1' in xwrite call.
5590         * system.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Define if
5591         not already defined.
5593 Wed Nov 16 07:01:38 1994  Jim Meyering  (meyering@comco.com)
5595         * tr.c: Include <getopt.h> instead of "getopt.h".
5597         * sort.c (tempname): Merge two very similar sprintf stmts into one.
5599         * tail.c: Use BUFSIZ instead of BUFSIZE.
5601         * cut.c: Declare DELIM to be `int' rather than unsigned char.
5603         * fmt.c: Use index, not strchr -- per GNU Standards.
5604         Reported by Kaveh Ghazi.
5605         Always include <config.h>.
5606         (main): Include program name in --version output.
5608 Sun Nov 06 00:17:21 1994  Jim Meyering  (meyering@comco.com)
5610         * Version 1.11.
5612 Sat Nov 05 15:14:44 1994  Jim Meyering  (meyering@comco.com)
5614         * memcmp.c, srtoul.c: Use up-to-date versions.
5615         Reported by Franc,ois Pinard.
5617         * src/Makefile.in (DEFS): Remove -Dlint... again.
5619         * src/Makefile.in (PROGS): Add fmt!
5620         Reported by Andreas Stolcke (stolcke@ICSI.Berkeley.EDU).
5622 Fri Nov 04 17:26:16 1994  Jim Meyering  (meyering@comco.com)
5624         * Version 1.10.
5626 Thu Nov 03 23:23:08 1994  Jim Meyering  (meyering@comco.com)
5628         * linebuffer.h: Use __P instead of _P since the latter conflicts
5629         with a definition in some <ctype.h>.  From Kaveh Ghazi.
5631 Wed Nov 02 17:36:34 1994  Jim Meyering  (meyering@comco.com)
5633         * tr.c: Add const attribute where appropriate.
5635         * tail.c (BUFSIZ): Use definition from <stdio.h>.
5637 Tue Nov 01 23:54:09 1994  Jim Meyering  (meyering@comco.com)
5639         * tail.c (XWRITE): Allow n_bytes == 0 but call fwrite only if
5640         n_bytes is positive.  Turn off assertions.  `tail /dev/null' was
5641         getting a failed assertion.  Reported by Doug McLaren
5642         (dougmc@comco.com).
5644         * cut.c (cut_bytes): Print at least a newline for every line of input.
5645         (cut_fields): Print a newline even for lines whose only selected
5646         field is empty.  But print nothing when using -s without -f1.
5647         And print nothing for empty input.  Reported by
5648         Richard_Sharman@software.mitel.com.
5650 Tue Nov 01 06:05:23 1994  Jim Meyering  (meyering@comco.com)
5652         * fmt.c: Change #ifdef __STDC__ to #if defined (__STDC__) && __STDC__.
5653         * linebuffer.h: Likewise.
5655 Mon Oct 31 06:53:32 1994  Jim Meyering  (meyering@comco.com)
5657         * configure.in (AC_REPLACE_FUNCS): Remove memcmp since AC_FUNC_MEMCMP
5658         already handles it.  From Kaveh Ghazi.
5660         * {lib,src}/Makefile.in (DEFS): Don't use -Dlint.  Some systems
5661         get failures when it's defined.  From Kaveh Ghazi.
5663         * cat.c (cat): Conditionalize test for errno == ENOSYS.  It's not
5664         defined on some Next and Alliant systems.  From Kaveh Ghazi.
5666         * sort.c join.c (main): Include version.h and call parse_long_options
5667         with the proper number of arguments.  Reported by Franc,ois Pinard.
5669 Sun Oct 30 01:30:41 1994  Jim Meyering  (meyering@comco.com)
5671         * (configure.in): Add AC_OFF_T and rearrange by type along the
5672         same lines as autoscan.
5674         * fmt.c, fmt.1: New files.
5675         Both from Ross Paterson (rap@doc.ic.ac.uk).
5677         * Makefile.in (PROGS): Add fmt.
5678         * src/Makefile.in (SOURCES, OBJECTS): Add fmt.c and fmt.o respectively.
5679         (fmt): Add a link rule.
5680         * man/Makefile.in (MANFILES): Add fmt.1.
5682 Sat Oct 08 10:44:30 1994  Jim Meyering  (meyering@comco.com)
5684         * Makefile.in (All of them): Update from the ones in sh-utils.
5685         From now on, rules and definitions that are comon to the fileutils,
5686         textutils, and sh-utils will get ChangeLog entries only in the
5687         sh-utils.
5689 Tue Oct 04 20:42:46 1994  Jim Meyering  (meyering@comco.com)
5691         * od.c (my_strtoul): Set errno to zero before calling strtoul.
5692         Otherwise, od can fail complaining about a valid integer argument.
5693         From Andreas Schwab.
5695 Sun Oct 02 17:57:09 1994  Jim Meyering  (meyering@comco.com)
5697         * tr.c (main): Give an error and fail when squeezing repeats
5698         and no non-options are given.  Reported by Tony Robinson
5699         (ajr@eng.cam.ac.uk).
5701         * sort.c (main): Temporarily copy each input file that might be
5702         another name for the output file.  When in doubt (e.g. a pipe),
5703         copy.  This allows the dangerous (historical -- in cnews) idiom
5704         `cat file | sort -o file' to work properly.  Don't rely on this
5705         behavior in new shell scripts.  From Paul Eggert (eggert@twinsun.com).
5707 Mon Sep 26 18:01:47 1994  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
5709         * lib/xwrite.c safe-read.c memchr.c linebuffer.c full-write.c:
5710         Remove CONFIG_BROKETS ifdef.
5711         * src/Makefile.in lib/Makefile.in: Don't define it.
5713 Sat Sep 24 21:26:27 1994  Jim Meyering  (meyering@comco.com)
5715         * full-write.c (full_write): Declare argument LEN to be size_t.
5717 Mon Sep 12 13:35:27 1994  Jim Meyering  (meyering@comco.com)
5719         * tail.c (tail_file): [For multiple files only]: Report truncation
5720         of monitored file and reset current file size.  From Franc,ois Pinard.
5722 Sat Aug 27 16:57:20 1994  Jim Meyering  (meyering@comco.com)
5724         * system.h [BROKEN_STAT_MACROS]: Remove unnecessary #ifdef's.
5725         From Franc,ois Pinard.
5727 Tue Jul 26 11:33:53 1994  Jim Meyering  (meyering@comco.com)
5729         * system.h: Remove `|| defined(_POSIX_VERSION)' from test that
5730         decides whether to include <fcntl.h>.  From Francois Pinard.
5732 Wed Jul 13 12:33:34 1994  Jim Meyering  (meyering@comco.com)
5734         * tr.c (substr): Fix off-by-one allocation error.
5736 Wed Jun 22 01:02:50 1994  Jim Meyering  (meyering@comco.com)
5738         * tac.c (tac_file): Use O_RDONLY instead of zero in call to open.
5739         (tac): Fix typo that had `1' as arg #2 of error after failed read.
5740         Use errno instead.  From Michael I Bushnell <mib@gnu.ai.mit.edu>.
5742 Thu May 26 08:46:32 1994  Jim Meyering  (meyering@comco.com)
5744         * configure.in [INSTALL]: Revert change of March 25.  autoconf
5745         has been fixed.
5747 Mon Apr 11 17:25:43 1994  Jim Meyering  (meyering@comco.com)
5749         * join.c (prline): Remove unused function.  Indent.
5751 Fri May  6 05:44:24 1994  Jim Meyering  (meyering@comco.com)
5753         * tail.c (tail_forever): Don't print headers when asked not to.
5754         From Karsten Thygesen <karthy@kom.auc.dk>.
5756         * wc.c (wc): Optimize for the case when only bytes are being counted
5757         and the input is not a regular file.  From Jeff Moore <jbm@mordor.com>.
5759 Sun Apr 24 10:54:08 1994  Jim Meyering  (meyering@comco.com)
5761         * configure.in [AC_SIZEOF_TYPE]: Update for autoconf-1.9.
5762         * memchr.c: Test SIZEOF_LONG instead of LONG_64_BITS.
5764 Mon Apr 11 17:55:52 1994  Jim Meyering  (meyering@comco.com)
5766         * csplit.c (struct control): Add new field, repeat_forever.
5767         Remove now-unneeded definition of INT_MAX.
5768         (process_regexp): Test repeat_forever instead of comparing `repeat'
5769         to INT_MAX.
5770         (split_file): Don't even reference `repeat' count if repeat_forever
5771         is set.
5772         (new_control_record): Initialize repeat_forever field.
5773         (parse_repeat_count): Set it instead of setting repeat count to
5774         INT_MAX.
5775         (process_line_count): Abort for internal error instead of calling
5776         handle_line_error.
5778         * long-options.c (parse_long_options): Take a new argument indicating
5779         the utility name (e.g. "join", not "gjoin") for version output.
5780         Print both the utility and the package names, e.g. `join - GNU
5781         textutils-1.9.1' instead of just the package name.
5783         * join.c (main): Call parse_long_options with program name arg.
5784         * sort.c (main): Ditto.
5786         * All source except sort.c and join.c (main): Change --version output
5787         to include utility name as well as package name and version info.
5789 Wed Mar 30 08:53:21 1994  Jim Meyering  (meyering@comco.com)
5791         * configure.in: Use AC_SET_MAKE.
5792         * Makefile.in: Edit MAKE assignments into @SET_MAKE@.
5794 Mon Mar 28 09:55:05 1994  Jim Meyering  (meyering@comco.com)
5796         * tr.c (main): In addition to the --help usage pointer, give an
5797         explicit error message for too many arguments.
5799 Fri Mar 25 18:11:19 1994  Jim Meyering  (meyering@comco.com)
5801         * configure.in: Use AC_VERBOSE, AC_CHECKING, and AC_WARN instead
5802         of explicit echo commands.
5803         [INSTALL]: When AC_PROG_INSTALL resorts to setting this to
5804         `./install.sh', make it `../install.sh' instead since that
5805         script will be invoked only from subdirectories.
5806         [AC_SIZEOF_TYPE]: Use this instead of deprecated AC_LONG_64_BITS.
5808         * cat.c (cat): The command `:|cat -s' failed on Irix5 because
5809         ioctl (d, FIONREAD,... now returns ENOSYS for pipes -- under Irix4
5810         it returned EINVAL.  Detect this.
5811         (main) [lint]: Initialize variables to suppress `used before
5812         initialized' warnings.
5814         * csplit.c: Change long option name from --suffix to --suffix-format.
5816         * od.c (skip): Correct a comment.
5817         (main): Don't output anything to stdout if the sole input file
5818         doesn't exist.  Reported by Bauke Jan Douma <bjd@dds.hacktic.nl>.
5820         * od.c (dump) [lint]: Initialize a variable to suppress `used before
5821         initialized' warning.
5822         (main) [lint]: Ditto.
5823         * paste.c (paste_parallel) [lint]: Ditto.
5825 Fri Jan 28 11:02:21 1994  Jim Meyering  (meyering@comco.com)
5827         * configure.in: Don't set LDFLAGS since linking now uses both
5828         LDFLAGS and CFLAGS.
5830 Wed Jan 18 16:14:00 1994  Jim Meyering  (meyering@comco.com)
5832         * unexpand.c (unexpand): Don't segfault when given a name of a
5833         nonexistent file.
5834         * expand.c (expand): Ditto.
5835         Both from Bauke Jan Douma <bjd@dds.hacktic.nl>.
5837 Thu Jan 13 17:27:38 1994  Jim Meyering  (meyering@comco.com)
5839         * src/Makefile.in: Change all link commands to use both $(CFLAGS)
5840         and $(LDFLAGS).
5842         * csplit.c (load_buffer): Rather than incrementing buffer size,
5843         double it each time we fail to find a newline.  Otherwise, csplit
5844         would run out of memory when processing files with very long lines.
5846 Mon Jan 10 01:20:38 1994  Jim Meyering  (meyering@comco.com)
5848         * man/Makefile.in (manprefix): Use binprefix as the default.
5850 Sat Jan 08 22:22:45 1994  Jim Meyering  (meyering@comco.com)
5852         * cat.c: Use full_write and safe_read instead of write and read resp.
5853         * csplit.c: Ditto.
5854         * head.c: Ditto.
5855         * split.c: Ditto.
5856         * tac.c: Ditto.
5858         * sum.c: Use safe_read instead of read.
5859         * tr.c: Ditto.
5860         * wc.c: Ditto.
5862         * tail.c: Replace calls to xwrite with calls to fwrite.
5863         Use fopen/fclose instead of open/close.
5864         (write_header): Use a single call to printf instead of four to xwrite.
5865         Use safe_read instead of read.
5866         * head.c: Ditto.
5868 Tue Dec 28 15:49:32 1993  Jim Meyering  (meyering@comco.com)
5870         * install.sh: New file.
5871         Makefile.in [DISTFILES]: Add it.
5873 Wed Dec 22 18:52:44 1993  Jim Meyering  (meyering@comco.com)
5875         * memcmp.c: Use the latest version from the GNU C library.
5877         * cut.c [ADD_RANGE_PAIR]: New macro.
5878         (set_fields): Collect the list of all selected ranges before
5879         allocating and initializing the boolean lookup table.
5880         (cut_bytes, cut_fields): Complete rewrite.  Avoid copying
5881         into buffer whenever possible.  Properly handle input without
5882         trailing newline.
5883         (getstr): New function.  Copied from getline.c, but with minor changes.
5885         * sort.c (main): Properly handle -Tdir.
5886         Before, `sort -T/var/tmp' gave `sort: unrecognized option `-v''.
5887         Reported by Kristoffer Rose (kris@diku.dk).
5889         * cut.c (main): Give separate errors for `-s without -f'
5890         and `-d without -f'.
5891         (main): Now -d '' means `use the NUL byte as the delimiter'.
5892         Before, it got an error.
5894 Mon Dec 20 23:29:30 1993  Jim Meyering  (meyering@comco.com)
5896         * configure.in [test for 8-bit clean memcmp]: Add a test to detect
5897         losing memcmp from SunOS4.1.x.  From Robert H. de Vries
5898         <robert@and.nl>.
5900 Sat Dec 18 01:12:24 1993  Jim Meyering  (meyering@comco.com)
5902         * configure.in (AC_OUTPUT): Put `touch stamp-config' in second arg
5903         so it goes in config.status.  This eliminates unnecessary second run
5904         of configure.
5906 Thu Dec 02 23:53:03 1993  Jim Meyering  (meyering@comco.com)
5908         * configure.in (AC_HAVE_FUNCS): Add isascii.
5909         * system.h [!defined (isascii) || defined (STDC_HEADERS)]: This failed
5910         on AIX PS/2 1.3 systems because isascii is a function and it is used
5911         in definitions (with the necessary side effect of assigning to a
5912         global variable) of the is* macros.  Also test HAVE_ISASCII and
5913         redefine ISASCII(c) instead of isascii.
5914         Reported by Minh Tran-Le (tranle@intellicorp.com).
5916 Fri Nov 19 22:41:48 1993  Jim Meyering  (meyering@comco.com)
5918          * configure.in: Don't run the test for 8-bit clean memcmp if we
5919          already know we'll be using our replacement.
5921 Fri Nov 12 00:44:49 1993  Jim Meyering  (meyering@comco.com)
5923         * Version 1.9.1.
5925         * tac.c (usage): Fix typo in long usage.
5926         * sort.c (usage): Likewise.
5927         From Philippe.Schnoebelen@imag.fr.
5929         * cut.c [FATAL_ERROR]: New macro.
5930         (main): Call both error and usage (2) through FATAL_ERROR in
5931         many places.  Before, only `error (2...' was called.
5932         (invalid_list): Removed.  This function is subsumed by FATAL_ERROR.
5934         * cut.c (cut_fields): Properly handle input lacking a terminating
5935         newline.  Before, the command  `printf "a\tb" |cut -f 1' generated
5936         no output.
5938 Tue Nov 09 17:26:25 1993  Jim Meyering  (meyering@comco.com)
5940         od.c (usage): Change --backward-compatible to --traditional in
5941         the long usage message.
5943 Sun Nov 07 00:50:05 1993  Jim Meyering  (meyering@comco.com)
5945         * Version 1.9.
5947 Sat Nov 06 22:51:31 1993  Jim Meyering  (meyering@comco.com)
5949         * cut.c (cut_fields): Revert July 27 change.  Instead, strip off
5950         trailing delimiter unless given a range of fields like `3-' that
5951         extends to end of line.
5952         (set_fields): Moved local `eol_range_start' to file-scope.
5953         Reported by Arne H. Juul (arnej@solan.unit.no).
5955 Tue Nov 02 00:53:41 1993  Jim Meyering  (meyering@comco.com)
5957         * fold.c (fold_file): Don't get stuck in an endless loop when
5958         width is smaller than 8 and there are TABs in the input.
5960 Sat Oct 30 15:31:28 1993  Jim Meyering  (meyering@comco.com)
5962         * join.c: Remove now-unused dcls of show_help and show_version.
5964 Fri Oct 29 13:58:50 1993  Jim Meyering  (meyering@comco.com)
5966         * csplit.c [INT_MAX]: Make sure it's defined.
5967         [not HAVE_LIMITS_H]: Don't include limits.h.
5968         From Kaveh R. Ghazi (ghazi@noc.rutgers.edu).
5970 Wed Oct 27 01:13:52 1993  Jim Meyering  (meyering@comco.com)
5972         * Version 1.8.1.
5974 Mon Oct 25 20:16:33 1993  Jim Meyering  (meyering@comco.com)
5976         * sort.c: Accept but ignore -y0 for compatibility with Solaris 2.
5977         From Chuck Hedrick (hedrick@klinzhai.rutgers.edu).
5979         * sort.c (main): Handle --help and --version options.
5980         * Makefile.in (sort.o): Depend on long-options.h.
5982 Sun Oct 24 00:31:02 1993  Jim Meyering  (meyering@comco.com)
5984         * csplit.c, cut.c, expand.c, fold.c, head.c, nl.c, od.c, paste.c,
5985         split.c, tac.c, tail.c, unexpand.c, uniq.c: Use the preferred
5986         `--longopt=arg' syntax in --help message rather than `--longopt arg'.
5987         From Francois Pinard.
5989         * tail.c: Don't include <signal.h>.  It hasn't been necessary
5990         since the Dec 12, 1992 change.
5992         * join.c (main): Accept `-v 1' again.  Adding the --version
5993         long option had broken it, although -v1 still worked.  Call
5994         parse_long_options instead of adding "help" and "version"
5995         to join's longopt strct.
5996         * Makefile.in [SOURCES, OBJECTS, DISTFILES]: Add long-options.c
5997         and long-options.h.
5998         * (join): Depend on and link with long-options.o.
5999         * (join.o): Depend on long-options.h.
6001         * od.c: Change --compatible (-C) to --backward-compatible (-B).
6003         * csplit.c: Change --abandon-null-files to --elide-empty-files.
6005 Sat Oct 23 01:00:12 1993  Jim Meyering  (meyering@comco.com)
6007         * tr.c (get_next, string2_extend): Add default: label to switch stmt.
6009         * cat.c, cksum.c, comm.c, csplit.c, cut.c, expand.c, fold.c, head.c,
6010         join.c, nl.c, od.c, paste.c, pr.c, split.c, sum.c, tac.c, tail.c,
6011         tr.c, unexpand.c, uniq.c, wc.c (usage): Add long --help.
6012         Exit successfully for --help, non-zero for usage error.
6013         From Francois Pinard.
6015         * configure.in: Add AC_STAT_MACROS_BROKEN.
6016         * system.h [AC_STAT_MACROS_BROKEN]: Test it.
6018 Fri Oct 22 23:26:17 1993  Jim Meyering  (meyering@comco.com)
6020         * linebuffer.c, memchr.c [HAVE_CONFIG_H, CONFIG_BROKETS]: Include
6021         <config.h> or "config.h".
6022         * cat.c, cksum.c, comm.c, csplit.c, cut.c, expand.c, fold.c, head.c,
6023         join.c, nl.c, od.c, paste.c, pr.c, sort.c, split.c, sum.c, tac.c,
6024         tail.c, tr.c, unexpand.c, uniq.c, version.c, wc.c: Ditto.
6026         * configure.in: Use AC_CONFIG_HEADER.
6027         * Makefile.in [DIST]: Add config.h.in.
6029         * Makefile.in: Convert so make may be run from subdirectories.
6030         Add dependencies on config.h.
6031         * src/Makefile.in: Ditto.
6032         * lib/Makefile.in: Ditto.
6033         * man/Makefile.in: Ditto.
6035 Wed Oct 20 20:05:48 1993  Jim Meyering  (meyering@comco.com)
6037         * memchr.c (memchr): Do the 32-bit assignment only if !LONG_64_BITS.
6038         In the 64-bit assignment, be careful to cast the shift operand to
6039         long.
6040         Abort if sizeof (unsigned long) > 8.
6042 Tue Oct 19 22:37:58 1993  Jim Meyering  (meyering@comco.com)
6044         * csplit.c: Allow repeat counts to be specified via `{*}'.
6045         New option --suffix=format.  Supercedes --digits option.
6046         New option --abandon-null-files.
6047         From Ronald F. Guilmette (rfg@netcom.com).
6049         * csplit.1: Updated.
6050         From Ronald F. Guilmette.
6052         * csplit.c: Remove register keyword (replace with `int' in two cases).
6054         * csplit.c: [MAX]: Macro renamed from max and moved to top of file.
6055         (bytes_to_octal_digits): New static array.
6056         (get_format_flags): Combine '+' and ' ' cases of switch stmt.
6057         Return count if for loop terminates.
6058         (get_format_width): Use `bytes_to_octal_digits' instead of just 11.
6059         (get_format_prec): Make sure is_negative is defined before used.
6060         (get_format_conv_type): Give a different error message if there
6061         is no conversion specifier.
6062         Test ISPRINT (ch) instead of `ch < '~' && ch > ' ''.
6063         (max_out): Use `%%' rather than `%' in format string.
6065 Sat Oct 16 10:45:17 1993  Jim Meyering  (meyering@comco.com)
6067         * pr.c (main): When argc == 1, don't try to xmalloc (0).
6069 Tue Oct 12 00:53:26 1993  Jim Meyering  (meyering@comco.com)
6071         * xwrite.c [HAVE_CONFIG_H, CONFIG_BROKETS]: Include <config.h>
6072         or "config.h".
6074 Sat Oct 09 23:37:43 1993  Jim Meyering  (meyering@comco.com)
6076         * configure.in: Remove AC_UNISTD_H; add unistd.h to AC_HAVE_HEADERS.
6078 Thu Sep  9 21:52:10 1993  Jim Meyering  (meyering@comco.com)
6080         * src/*.c: Print version on standard output, not stderr.
6082         * configure.in: Add AC_LONG_64_BITS.
6083         * memchr.c: Use #ifdef LONG_64_BITS instead of
6084         `if (sizeof(longword) > 4)'.
6086 Tue Jul 27 22:19:39 1993  Jim Meyering  (meyering@comco.com)
6088         * cat.c (cat): Don't fail just because ioctl (d, FIONREAD,... can't
6089         always handle devices.  Ignore errno == EINVAL and errno == ENODEV.
6090         `cat -v /dev/null' was failing on many systems.
6092         * cut.c (cut_fields): Don't strip off trailing delimiter e.g.
6093         `echo 'a:b:c:' | cut -d: -f3-' should print `c:', not just `c'.
6094         From William Dowling <will@franklin.com>.
6096 Thu May 27 01:37:51 1993  Jim Meyering  (meyering@comco.com)
6098         * Version 1.8.
6100         * memchr.c: De-ansify the fixed version from glibc.
6101         It is supposed to work on systems with 64-bit long ints.
6103 Mon May 24 00:32:43 1993  Jim Meyering  (meyering@comco.com)
6105         * Version 1.7.
6107 Sat May 22 02:13:12 1993  Jim Meyering  (meyering@comco.com)
6109         * Version 1.6.
6111 Fri May 21 22:57:53 1993  Jim Meyering  (meyering@comco.com)
6113         * pr.c (cols_ready_to_print): New function.  It replaces a global
6114         variable by the same name and computes on the fly the value that
6115         was supposed to be maintained through that variable.  This should
6116         put to rest the `pr -2a' bug.
6117         (main): Don't let getopt_long reorder arguments so we can
6118         distinguish between `pr -1 -2' and `pr -12'.  Rework handling of
6119         -n and +n options.
6121         * fold.c: Declare xmalloc.
6123 Wed May 19 19:12:18 1993  Karl Berry  (karl@owl.hq.ileaf.com)
6125         * sort.c (main): fflush before exit, so a closed stdout doesn't lose.
6127 Tue May 18 23:49:26 1993  Jim Meyering (meyering@comco.com)
6129         * mkinstalldirs: New file.
6130         * Makefile.in (installdirs): Use it to create installation directories.
6132 Fri May 14 23:45:52 1993  Jim Meyering  (meyering@comco.com)
6134         * all source: With --version, print version and exit immediately.
6136 Thu May 13 01:03:16 1993  Jim Meyering  (meyering@comco.com)
6138         * Makefile.in (installdirs): New rules for creating installation
6139         directories. (install): depend on it.
6141         * tail.c (main): Remove --compatible since `+1f' may be used
6142         to get the BSD `-0f' behavior portably.
6144         * fold.c (main): Turn -N arguments, where N is a digit, into -wN.
6145         From Ian Lance Taylor (ian@cygnus.com).
6147 Mon May 10 22:33:44 1993  Jim Meyering  (meyering@comco.com)
6149         * tail.c (main): New option -C, --compatible to make `tail -0f'
6150         work like `tail +1f' for compatibility with BSD tail.
6152 Thu May  6 23:28:56 1993  Jim Meyering  (meyering@comco.com)
6154         * pr.c (print_page): Decrement cols_ready_to_print even when
6155         lines_to_print == 0.  The command `echo |pr -2ta' *still* didn't
6156         terminate.  Add parentheses for clarity.
6158 Mon May  3 23:57:47 1993  Jim Meyering  (meyering@comco.com)
6160         * Version 1.5.
6162         * od.c (main): Remove set-but-not-used variable, `usage_error'.
6164         * split.c (main): Call usage with an argument.
6166 Sun May  2 16:05:04 1993  Jim Meyering  (meyering@comco.com)
6168         * configure.in: Reverse if-else branches in AC_TEST_PROGRAM test
6169         for 8-bit clean memcmp.
6171         * cat.c (usage, main): Remove unused argument.
6173         * csplit.c (remove_line): Remove set-but-not-used variable, `line_got.'
6174         (check_for_offset): Remove unused argument `argnum.'
6176         * configure.in: Add AC_SIZE_T.
6178 Sat May  1 09:03:19 1993  Jim Meyering  (meyering@comco.com)
6180         * uniq.c (main): Interpret non-option arguments with a leading `+'
6181         only if we haven't seen `--'.
6183         * tr.c (main): Change variable name to avoid shadowed dcl.
6184         * wc.c (write_counts): Ditto.
6186         * sum.1: Make documentation agree with the code.
6188         * od.c: Depend only on HAVE_LONG_DOUBLE for long double support.
6190 Fri Apr 30 20:16:03 1993  Jim Meyering  (meyering@comco.com)
6192         * configure.in [AC_HAVE_HEADERS]: Add limits.h.
6194         * configure.in [CFLAGS, LDFLAGS]: Assign reasonable defaults.
6196         * od.c (parse_old_offset): Don't use prototype in function
6197         definition.  Remove unnecessary conjunct from test for hexadecimal
6198         prefix.
6200         * od.c: Depend on __GNUC__ || HAVE_LONG_DOUBLE rather than __STDC__
6201         for long double support;  there are compilers (Stardent Vistra svr4)
6202         without long double but still define __STDC__.
6204 Thu Apr 29 02:01:27 1993  Jim Meyering  (meyering@comco.com)
6206         * src/*.c and man/*.c except for sort: Add --help and --version
6207         options.
6209         * pr.c: Convert to use getopt_long.
6211         * lib/memcmp.c: Use version from glibc.
6212         [WORDS_BIGENDIAN]: Test this instead of the using glibc's
6213         __BYTE_ORDER macro.
6214         * configure.in: Use AC_WORDS_BIGENDIAN to set it.
6216         * od.c (parse_old_offset): Allow `0X' as well as `0x' prefix to
6217         indicate hex.
6219         * Makefile.in (dist): Depend on Makefile so that changes to
6220         Makefile.in (like adding new files to DISTRIB) are reflected
6221         in the new distribution.
6223 Fri Apr 23 21:53:47 1993  Jim Meyering  (meyering@comco.com)
6225         * {lib,src}/Makefile.in [.c.o]: Make CPPFLAGS and CFLAGS follow
6226         other options so users can use them to override DEFS.
6227         * src/Makefile.in [.c.o]: Add -I$(srcdir) for version.h.
6229         * Makefile.in [CFLAGS, LDFLAGS]: Don't set to -g explicitely;
6230         configure's AC_SUBST will set these.
6232         * Makefile.in [Makefile]: Add dependencies and a rule to remake it.
6233         [targets that cd then run make in subdirectories]: Don't depend
6234         on `cd ..';  use a subshell instead.
6236         * Makefile.in [info, install-info, dvi, check, installcheck]:
6237         New targets but no rules; comply with standards.
6239         * configure.in [CFLAGS]: Default to -g -O if CC is gcc and the user
6240         hasn't specified CFLAGS.
6241         [LDFLAGS]: Substitute into Makefile.
6243 Tue Mar 30 21:36:11 1993  Jim Meyering  (meyering@comco.com)
6245         * od.c: New option --compatible, -C.
6246         (parse_old_offset): New function.
6247         * od.1: Document new option.
6249 Mon Mar 29 21:27:56 1993  Jim Meyering  (meyering@comco.com)
6251         * cut.c, expand.c, join.c, nl.c: Always call error with errno
6252         (not zero) after failed fclose or non-zero ferror.
6254 Sun Mar 28 16:59:31 1993  Mike Haertel  (mike@cs.uoregon.edu)
6256         * configure.in: Add check for working memcmp; use GNU's if
6257         the system's doesn't grok the 8th bit.
6258         * memcmp.c: Fix it so it groks the 8th bit.
6259         TODO: We really need to provide a fast memcmp, since most
6260         machines will have a broken memcmp.  Probably should get
6261         the one from glibc.
6262         * sort.c (mergefps): Maintain keybeg and keylim when copying
6263         the current line to `saved'.
6264         (numcompare): Skip white space here since -n no longer implies -b.
6265         (getmonth): Skip white space here since -M no longer implies -b.
6266         (compare): Completely overhauled to make the 8th bit work right,
6267         also to properly handle the global reverse option.
6268         (set_ordering): -n no longer implies -b, according to Posix.
6269         For consistency, -M also no longer implies -b.
6270         (main): Correct treatment of -r and global keys.
6271         (findlines): Clear keybeg and keylim if no keys are used.
6272         (sort): Avoid overwriting tempfiles[] array bounds.
6274 Sun Mar 21 22:29:29 1993  Jim Meyering  (meyering@comco.com)
6276         * pr.c (close_file): Reverse May 13, '92 change, but add the condition
6277         that cols_ready_to_print not be decremented when printing across.
6278         The command `echo |pr -2ta' didn't terminate.
6279         (print_page): Rewrite conditional (that had side effects in second
6280         conjunct) using nested if statements to make it clear that we do
6281         indeed want those semantics.
6283 Tue Jan 19 13:35:24 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6285         * Version 1.4.
6287         * system.h: Try BBSIZE if BSIZE isn't defined.
6288         From Tony Robinson <ajr@eng.cam.ac.uk>.
6290 Sat Dec 12 12:37:00 1992  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6292         * tail.c (tail_forever): Use an array of file descriptors
6293         instead of forking processes.
6294         (dump_remainder): Return number of bytes read.
6295         (tail_file): Fill in the new array.
6296         From Ian Lance Taylor.
6298 Fri Dec 11 17:18:16 1992  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
6300         * system.h: Only define index, bcmp, etc. if not already defined.
6302 Tue Dec  8 10:31:14 1992  Jim Meyering  (meyering@idefix.comco.com)
6304         * tr.c (is_char_class_member): Remove unreached return after abort.
6306 Sun Dec  6 22:34:52 1992  Jim Meyering  (meyering@idefix.comco.com)
6308         * csplit, cut.c, expand.c, fold.c, head.c, join.c, od.c, pr.c,
6309         sort.c, split.c, tail.c, tr.c, unexpand.c, uniq.c:  Remove inclusion
6310         of <ctype.h> and definitions of is* ctype macros to system.h.
6311         Change a few more uses of is* ctype macros to (protected) upper
6312         case versions.
6314         * system.h: Add isascii-protected ctype IS* macros.
6316 Wed Dec  2 12:28:10 1992  Jim Meyering  (meyering@idefix.comco.com)
6318         * all files using getopt.h: Convert static declarations of
6319         struct option to use new macros from getopt.h: no_argument,
6320         required_argument, and optional_argument.
6322 Tue Dec 01 10:57:24 1992  Jim Meyering  (meyering@idefix.comco.com)
6324         * od.c, pr.c, sort.c: Make uses of ctype.h macros consistent.
6326         * tr.c (main): Close stdin and stdout and check return status.
6328 Tue Nov 24 09:26:08 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6330         * system.h, csplit.c: Use HAVE_FCNTL_H and HAVE_STRING_H
6331         instead of USG.
6333 Tue Nov 24 08:42:30 1992  Jim Meyering  (meyering@idefix.comco.com)
6335         * tr.c: Define new macros ISPRINT, ISALNUM, ISXDIGIT, ... that
6336         use isascii if it is defined.
6337         (is_char_class_member, make_printable_char, make_printable_str,
6338         non_neg_strtol): Use new macros instead of lower case ones
6339         from <ctype.h>.
6341         * od.c (print_ascii, dump_strings): Use ISDIGIT and ISPRINT
6342         macros like pr.c.  Suggested by David J. MacKenzie.
6344         * od.c (print_ascii, dump_strings): Check for isascii before isprint.
6345         (dump_strings): Free malloc'd buffer before returning.
6346         (skip): Return non-zero if an error occurred, zero otherwise.
6347         Exit only if asked to skip beyond end of combined input.
6348         (check_and_close): New function.
6349         (skip, read_block, read_char): Call check_and_close when done
6350         processing the file associated with in_stream.
6351         (skip, read_block, read_char): Set have_read_stdin.
6352         (main): Close stdin (if it was ever read) and check for errors
6353         just before exiting.
6354         (write_block, dump_strings, dump): Don't test return value from
6355         functions that operate on streams.  Rely on later ferror tests.
6357 Sat Nov 21 12:41:49 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6359         * sort.c (main, usage): Add -T option.
6361 Thu Nov 19 14:33:40 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6363         * tail.c (tail_forever, sigusr1, kill_kids): New functions to
6364         do -f on multiple files.
6365         (main): Call tail_forever.
6366         From Ian Lance Taylor.
6368 Tue Nov 10 14:29:11 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6370         * cut.c (cut_fields): Add cast.
6372         * od.c (decode_one_format): Remove '#' from pre_fmt_string;
6373         many systems don't support it.
6374         Conditionalize long double support on __STDC__, not __GNUC__.
6375         From Ian Lance Taylor.
6377 Mon Nov  9 00:24:41 1992  Jim Meyering  (meyering@idefix.comco.com)
6379         * sort.c (numcompare, keycompare): Add parentheses suggested
6380         by gcc -Wall.  Put braces around individual monthtab initializers.
6382         * cksum.c: Declare error.  Make checksum table `const.'
6384         * pr.c: Remove comment and dcl of unused variable, `print_a_number'.
6386         * split.c (main): Add `default: abort();' to enumeration switch.
6388         * All files: Make all functions and extern variables static.
6389         Make all longopts arrays const as well as static.
6390         Make a couple statically initialized aggregates `const.'
6392 Sun Nov  8 19:46:59 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6394         * od.c (main): Make old-style format options accumulate.
6395         From Jim Meyering.
6397 Sat Nov  7 00:26:14 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6399         * tr.c (look_up_char_class): Add cast.
6401         * nl.c (build_type_arg), csplit.c (extract_regexp), tac.c (main):
6402         Add `const' to variable receiving value from re_compile_pattern.
6404         * wc.c (wc): If doing only -c, use st_size for regular files.
6406         * fold.c (fold_file): Was folding 1 column too early.
6407         From Eric Backus <ericb@lsid.hp.com>.
6409         * memset.c: New file.
6411 Fri Nov  6 20:14:51 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6413         * cksum.c: New file.
6415 Tue Oct 13 16:24:06 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6417         * tac.c (tac_stdin): Handle SIGPIPE.
6418         * sort.c (main): Handle SIGTERM.
6420         * od.c: New file.
6422         * system.h [USG || STDC_HEADERS]: Define bcmp.
6424 Sat Oct  3 20:41:24 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
6426         * sort.c (main): Handle SIGPIPE.  From trq@dionysos.thphys.ox.ac.uk.
6428 Tue Sep 29 01:10:05 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
6430         * paste.c (main): Don't write on a string constant.
6432 Mon Aug 24 00:02:45 1992  Jim Meyering  (meyering@churchy.gnu.ai.mit.edu)
6434         * tr.c: Minor cleanup.  Replaced some assert(0) with abort().
6436 Tue Jul  7 02:14:19 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
6438         * cmp.c, cmp.1: Move to diff distribution.
6440 Fri Jul  3 16:37:59 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
6442         * system.h: Change FOO_MISSING to HAVE_FOO.
6444 Wed May 13 20:05:41 1992  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
6446         * pr.c (COLUMN): Add structure member to remember filename.
6447         (main, init_fps, open_file, close_file): Use it.
6449         (close_file): Don't decrement cols_ready_to_print when closing
6450         a file.  From cdl@mpl.UCSD.EDU (Carl Lowenstein).
6452 Mon May 11 19:17:33 1992  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
6454         * cmp.c: --show-chars -> --print-chars.
6456         * pr.c: Rename some variables.
6458 Sat May  9 18:39:47 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6460         * system.h: Define DEV_BSIZE if not defined.
6462 Wed Apr 22 02:15:09 1992  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
6464         * system.h, tac.c: SIGTYPE -> RETSIGTYPE.
6466 Fri Apr 17 10:42:23 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6468         * sort.c (main): Don't stop processing args when we hit "-";
6469         treat it like a regular filename.
6470         From ian@airs.com (Ian Lance Taylor).
6472         * pr.c (print_page): Fix off by one line count when ^L is in input.
6473         From Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de).
6475 Mon Apr  6 20:52:29 1992  Jim Meyering  (meyering@churchy.gnu.ai.mit.edu)
6477         * tr.c (validate): Change error message so it doesn't mention
6478         actual name of --truncate-set1 option.  From David MacKenzie.
6480 Sun Apr  5 14:22:42 1992  Jim Meyering  (meyering@hal.gnu.ai.mit.edu)
6482         * tr.c (string2_extend, validate): Give an error message when
6483         translating without --truncate-set1, with empty string2, and
6484         with non-empty string1.  "tr 1 ''" produced a failed assertion.
6486 Mon Mar 30 02:20:56 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6488         * system.h: Change how ST_BLKSIZE is calculated to allow for
6489         non-POSIX systems that don't define BSIZE in sys/param.h.
6491 Sat Mar 28 11:18:01 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6493         * sum.c (main, bsd_sum_file): Don't print filename if BSD
6494         algorithm is used and only one file was given.
6496 Wed Mar 25 11:34:41 1992  Jim Meyering  (meyering@wombat.gnu.ai.mit.edu)
6498         * tr.c (get_spec_stats): Fix assertion to allow ranges like a-a
6499         with starting character equal to ending character.  This is
6500         contrary to the POSIX spec, but what is already implemented
6501         in find_closing_delim.
6503 Mon Mar 16 00:15:11 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6505         * Version 1.3.
6507         * sort.c (numcompare, checkfp): Add parens to placate gcc2.
6509         * sort.c (mergefps): For -u, output the first, not last, of
6510         the lines that compare equal.  From Mike Haertel.
6512 Tue Mar 10 10:51:38 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
6514         * tr.c: Remove initial capitals and periods from error messages.
6516 Sun Mar  8 22:03:45 1992  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
6518         * sum.c (main): Add -r option for SYSV compat.
6520 Thu Feb 27 22:26:25 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
6522         * sort.c (compare): If -s given, leave lines in their original order.
6523         (main): Recognize -s.
6524         (usage): Document -s.
6525         From Mike Haertel.
6527 Tue Feb 18 20:29:45 1992  Randall Smith  (randy at geech.gnu.ai.mit.edu)
6529         * sort.c (sort): Check for complete parsing of buffer into
6530         lines before nixing temp files.
6532 Mon Feb 17 10:35:58 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6534         * sum.c (sysv_sum_file): Use %lu instead of %u to print a
6535         long.  Not that it matters for GNU . . .
6537         * tr.c (unquote, make_printable_str): Use \007 instead of ANSI \a.
6538         (append_normal_char, append_range, append_char_class,
6539         append_repeated_char, append_equiv_class, spec_init):
6540         Initialize `next' field of new `struct List_element'.
6541         From rommel@informatik.tu-muenchen.de (Kai-Uwe Rommel).
6543 Sat Feb  8 17:16:49 1992  David J. MacKenzie  (djm at apple-gunkies.gnu.ai.mit.edu)
6545         * join.c (get_line): Renamed from getline to avoid GNU libc conflict.
6547 Sun Feb  2 21:22:01 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6549         * Version 1.2.
6551         * nl.c: Support multiple files and "-" for stdin.
6552         (main): Check for read and write errors.
6553         (nl_file): New function.
6555 Wed Jan 29 10:09:10 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6557         * tr.c (main): -t option was called -b in getopt spec.
6558         (validate): Don't warn that set1 is longer than set2.
6560         * tr.c: Rename --sysv-string2-truncate to --truncate-string1.
6562 Fri Jan 17 16:29:05 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6564         * nl.c: New program from bin-src.
6566         * nl.c (main): Use a struct linebuffer for line_buf.
6567         (process_file): Use readline instead of fgets, to preserve NULs.
6568         (check_section): Use memcmp instead of strncmp.
6569         (proc_text): Print line_buf with fwrite instead of printf.
6571         * nl.c (main): Usage message if too many args given.  Check
6572         for error in closing input file.  Lengths of section delimiter
6573         strings were 1 too large.  Take separator_str into account in
6574         length of print_no_line_fmt.
6575         (build_print_fmt): Allocate space for print_fmt, in case
6576         separator_str is long.
6577         (proc_text): A blank line is one that contains nothing, not
6578         even nonprinting characters.
6580 Fri Jan 17 01:04:22 1992  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6582         * All programs: Document `--' instead of `+' to introduce
6583         long-named options, in usage messages.
6585         * sum.c (bsd_sum_file): Renamed from sum_file.
6586         (sysv_sum_file): New function.
6587         (main): Recognize an option to select between the algorithms.
6589 Sun Jan  5 17:41:18 1992  Jim Meyering (meyering at churchy.gnu.ai.mit.edu)
6591         * pr.c (close_file, print_page): Fixed bug that had the command
6592         yes |head |pr -t printing "yyyyyyyyyy".
6593         * (print_page): Fixed bug that had pr -3 -a printing two too few
6594         trailer lines per page.
6595         * (main): Added restriction that -a and -m are incompatible.
6596         Although the POSIX spec doesn't explicitly say they shouldn't
6597         be used together, it says -a modifies the -column option and
6598         that -column shouldn't be used with -m.
6600 Thu Jan  2 15:23:59 1992  David J. MacKenzie  (djm at albert.gnu.ai.mit.edu)
6602         * nl.c: Include regex.h after, not before, sys/types.h.
6604 Thu Jan  2 12:18:10 1992  Tom Lord  (lord at geech.gnu.ai.mit.edu)
6606         * sort.c (fillbuf) return bytes buffered instead of bytes read.
6608 Fri Dec 27 22:53:36 1991  Jim Kingdon  (kingdon at geech.gnu.ai.mit.edu)
6610         * sort.c (LINEALLOC): New #define.
6611         (struct lines): New field ``limit''.
6612         (initlines): Set it from new arg ``limit''.
6613         (sort, mergefps, checkfp): Pass new arg to initlines().
6614         (findlines): Don't realloc past lines->limit.
6616 Tue Dec 24 01:24:03 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6618         * tac.c, sort.c, csplit.c, system.h: Change POSIX ifdefs to
6619         HAVE_UNISTD_H and _POSIX_VERSION.
6621         * xwrite.c: Change POSIX ifdef to HAVE_UNISTD_H.
6623 Sat 14 Dec 1991 11:46:42  Jim Meyering  (meyering at wombat)
6625         * tr.c: Fixed an inaccurate comment on posix_pedantic.
6627 Thu 12 Dec 1991 21:15:20  Jim Meyering  (meyering at hal)
6629         * tr.c: Changed underscores to hyphens in long option name
6630         "sysv_string2_truncate".
6632 Wed Dec 11 13:33:34 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6634         * tac.c (main): Set obscure_syntax to tell re_search to
6635         allocate memory for the group registers.
6637 Fri Dec  6 18:26:27 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6639         * tac.c, sort.c, csplit.c [POSIX]:  Use sigaction instead of
6640         signal, which POSIX doesn't have.
6641         * sort.c: Replace inthandler and huphandler with sighandler.
6642         * csplit.c (main): Only handle signals if they were not being
6643         ignored.
6645         * tr.c: POSIX_ME_HARDER -> POSIXLY_CORRECT.
6647 Wed Dec  4 00:47:47 1991  Jim Meyering  (meyering at wombat)
6649         * tr.c (unquote): Reformat code so it doesn't go beyond column 80.
6650         * tr.c (squeeze_filter): Comment a little on why it's better
6651         to step through the input by two.
6652         * tr.c (set_initialize): Write a comment describing the function.
6653         * tr.c: Eliminated the variable `portability_warnings' and replaced
6654         references to it by references to `!posix_pedantic'.  One of the
6655         uses of portability_warnings had been wrong.
6657 Tue Dec  3 14:03:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6659         * tr.c: New program.
6661 Sun Dec  1 15:07:35 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6663         * linebuffer.[ch] (freebuffer): New function (used by cron).
6665 Thu Oct 17 22:30:22 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6667         * system.h, configure, Makefile.in: Don't include memory.h if
6668         STDC_HEADERS, removing need for MEMORY_H_MISSING.
6670 Thu 17 Oct 1991 16:53:07  Jim Meyering  (meyering at wombat)
6672         * pr.c (print_page): REALLY fixed `extra newline at EOF' problem.
6673         Somehow, part of my patch didn't make it last time.
6675 Sat Oct 12 12:04:47 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
6677         * tail.c (pipe_lines, pipe_bytes): Initialize `first->next'.
6679         * cmp.c (cmp): Print EOF message to stderr, not stdout, for
6680         POSIX 1003.2.11.2.
6682         * sort.c (xfwrite): fwrite never returns < 0, so check if
6683         number written is number we asked to write.
6684         (fillbuf, main): fread never returns < 0, so check ferror instead.
6685         From Rainer Orth.
6687 Tue Oct  8 18:07:08 1991  Jim Meyering  (meyering at churchy)
6689         * pr.c (print_page): Really fixed `extra newline at EOF' problem.
6690         * (store_columns): Fixed bug that caused `pr -b -2' to coredump
6691         on files of certain lengths.
6693 Fri Oct  4 22:30:25 1991  Jim Meyering  (meyering at churchy)
6695         * pr.c (print_page): Fixed to not add single spurious newline
6696         at EOF when using -t.
6698 Wed Oct  2 01:02:05 1991  David J. MacKenzie  (djm at apple-gunkies)
6700         * pr.c (print_page): Don't pad the page if -t given.
6702         * csplit.c (load_buffer), sort.c (mergefps): Use bcopy, not memcpy.
6704 Thu Sep 26 12:35:00 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
6706         * Version 1.1.
6708         * configure, system.h: Include memory.h if it works.
6710         * split.c: Allow `b' unit as well as `k' and `m'.
6712         * head.c, tail.c: Replace -b +blocks option with specifying
6713         units (b, k, or m) after the number.
6714         (parse_unit): New function.
6716         * fold.c (main): Check that -w arg is a number.
6718         * cut.c: +delimiter takes an arg.
6720 Mon Sep 16 14:52:38 1991  David J. MacKenzie  (djm at churchy.gnu.ai.mit.edu)
6722         * pr.c (close_file): Don't close an already closed file.
6724 Thu Sep 12 00:14:43 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6726         * memchr.c: New file.
6727         * configure: Check if it's needed.
6729         * csplit.c, gcsplit.1: New program.
6731         * pr.c (cleanup): Only free buffers if they were allocated.
6733         * sort.c [!USG && !STDC_HEADERS]: Declare memchr.
6735 Wed Sep 11 20:54:16 1991  Jim Meyering  (meyering at churchy)
6737         * pr.c: The following 3 bugs appeared (at least) when printing
6738         a  single file with the options `-3 -f'.
6739         * (print_white_space): Single spaces were being replaced
6740         with tabs.
6741         * (print_page): Some lines were getting too much white space
6742         at the beginning because spaces_not_printed wasn't being reset
6743         to 0.
6744         * (read_line): The single space between a truncated column
6745         on its left and the column on its right was omitted.  Fixed
6746         so that previous value of input_position is restored before
6747         returning FALSE.
6749 Sat Sep  7 03:22:18 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6751         * configure: Only remove /etc from PATH when it's not part of
6752         a larger name.
6754 Wed Sep  4 17:09:24 1991  David J. MacKenzie  (djm at apple-gunkies)
6756         * linebuffer.c (readline): Fix incorrect recalculation of `end'.
6758         * head.c, tail.c: Replace `mode' variables and bitmasks with
6759         separate variables for each option.
6761 Mon Sep  2 04:00:37 1991  David J. MacKenzie  (djm at apple-gunkies)
6763         * wc.c: New program.
6765 Sun Sep  1 01:18:38 1991  David J. MacKenzie  (djm at apple-gunkies)
6767         * fold.c (fold_file): Read in an int, not a char, for EOF
6768         comparison.
6770         * configure: Check whether st_blksize is missing.
6772         * tac.c (save_stdin): Put copy of pipe input in TMPDIR if
6773         defined, instead of /tmp.
6775 Thu Aug 29 14:48:15 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6777         * xwrite.c [POSIX]: unistd.h might require sys/types.h.
6779 Wed Aug 28 11:57:39 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6781         * paste.c (main): Consider -d "" to be like -d "\0",
6782         for POSIX (if I read it right).
6784         * sort.c, join.c: New programs.
6786         * cut.c (set_field): Allow blanks as well as commas to
6787         separate numbers in ranges.
6789 Sun Aug 25 19:57:40 1991  Jim Meyering  (meyering at apple-gunkies)
6791         * pr.c: Failure to open an input file is no longer a fatal error.
6792         A message is printed for each failed open.  When printing
6793         in parallel, each failed open results in one fewer output column.
6794         Added POSIX -r option to suppress the message.
6795         * pr.c: Added variables: failed_opens, ignore_failed_opens.
6796         These changes were based in part on work by David MacKenzie.
6798 Sat Aug 24 15:27:39 1991  Jim Meyering  (meyering at pogo)
6800         * pr.c: Complain if user gives both -m and -[0-9]+ options.
6802 Wed Aug 21 22:04:57 1991  David J. MacKenzie  (djm at apple-gunkies)
6804         * Version 1.0.
6806 Mon Aug 19 00:16:51 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6808         * expand.c: Rename some variables.
6809         (expand): Don't access value off end of array.
6810         * unexpand.c: Rename some variables.
6811         (unexpand): Don't access value off end of array.
6812         Instead of copying tabs verbatim and flushing pending spaces
6813         when one is reached, count them as the proper number of
6814         pending spaces.  Instead of changing tabs to single spaces if
6815         the tabstop list is exhausted, print the rest of the line
6816         unchanged (for POSIX).
6818 Sat Aug 17 01:49:41 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6820         * cut.c (cut_file), paste.c (paste_parallel, paste_serial):
6821         Clear EOF and error conditions on stdin so it can be reused.
6823         * expand.c, unexpand.c (parse_tabstops): Allow blanks as well
6824         as commas to separate tabstops, for POSIX.
6825         * expand.c (expand), unexpand.c (unexpand): Don't line-buffer
6826         the output; send it directly to stdout.
6827         * unexpand.c (main): Make -t stupidly imply -a for POSIX.
6828         (unexpand): If a tab stop list was given and we move past its end,
6829         copy the rest of the line verbatim.
6831         * split.c (convint): New function to allow 'm' and 'k' after
6832         byte counts.
6833         (main): Use it.  Change -c option to -b for POSIX.
6835 Fri Aug  9 02:47:02 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6837         * pr.c: Protect isdigit with isascii, if required.
6839 Tue Aug  6 21:42:25 1991  David J. MacKenzie  (djm at wheat-chex)
6841         Most of the following is from Paul Eggert:
6842         * cat.c (main): If stdin is read, check close at end.
6843         * cmp.c (main): Check for stdin being closed.
6844         Check for close errors on stdin and stdout.
6845         (cmp): Return a value instead of exiting.
6846         * cut.c (cut_file): New function, from code in main.
6847         Check for read errors.
6848         (main): Check for close errors.
6849         * expand.c, unexpand.c (main): Check for close errors.
6850         (next_file): Go to next file if one can't be opened.
6851         Check for close errors.
6852         * head.c (main), tail.c (main): If stdin was read, check for
6853         close errors.
6854         * head.c (head_file), tail.c (tail_file): Check for close errors.
6855         * paste.c (main, paste_parallel, paste_serial), tac.c (main):
6856         Check for close errors.  Close stdin if it was read.
6857         * split.c (main): Check for close errors.
6859         * configure, Makefile.in's: Support +srcdir option.
6860         Make config.status.  Fix up clean targets.
6862 Wed Jul 31 01:32:59 1991  David J. MacKenzie  (djm at hal)
6864         * linebuffer.h (struct linebuffer): Add a field to indicate
6865         the number of valid chars in the line.
6866         * linebuffer.c (initbuffer, readline): Fill it in.
6867         * uniq.c, comm.c: Use it.
6869         * pr.c (main): Check stdin and stdout fclose for errors.
6870         (init_parameters): If there's no room for header and footer,
6871         omit them rather than dying (for POSIX).
6872         (init_header): Take a file descriptor as additional arg.
6873         (init_fps): Change callers.  Note when stdin is read.
6874         (open_file): For filename "-" use stdin.
6875         (close_file): Don't close stdin.  Check close for errors.
6876         (print_char, char_to_clump): Use isprint instead of explicit
6877         comparisons.
6879         * memcmp.c: New file (needed for comm).
6880         * bcopy.c: New file (needed for fold).
6881         * system.h: Don't define bcopy as memcpy.
6882         * configure: Check for bcopy and memcmp.
6884         * uniq.c (main): Use "-" instead of NULL to mean stdin or
6885         stdout.
6886         (check_file): Use "-" instead of NULL to mean stdin or stdout.
6887         Check readline return instead of for NUL character to
6888         detect eof.
6889         Check fclose for errors.
6890         (find_field): Use linebuffer length, not NULs, to detect end
6891         of line.
6892         (different): New function, replaces compare.  Uses memcmp
6893         instead of strncmp.
6894         (writeline): Use fwrite instead of fputs so NULs are preserved.
6896         * comm.c (compare_files): Return an error indication.
6897         Don't take a filename of NULL to mean stdin.
6898         Use memcmp instead of strcmp to allow for NULs.
6899         Check fclose for errors.
6900         (writeline): Use fwrite instead of fputs so NULs are preserved.
6902         * sum.c (sum_file): Take an arg indicating whether to print
6903         the filename, and don't take NULL meaning stdin.  Set a flag
6904         when we read stdin.  Check fclose return for errors.
6905         (main): If stdin was read, check fclose return for errors.
6906         Use filename of "-" if no args given.
6908 Thu Jul 25 15:17:10 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6910         * fold.c: Rewritten from scratch for POSIX.
6912 Wed Jul 24 01:55:41 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6914         * split.c (line_bytes_split): Use xmalloc instead of alloca.
6915         * system.h: Don't declare alloca.
6917         * tac.c, tail.c: Use SEEK_ instead of L_ for lseek.
6918         * system.h: Define SEEK_ macros if not defined.
6920         * pr.c: Rename variable `truncate' to avoid library function conflict.
6922 Tue Jul 23 13:21:48 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6924         * linebuffer.c, linebuffer.h: New files.
6925         * comm.c, uniq.c (initbuffer, readline): Functions
6926         removed (use versions in linebuffer.c).
6928 Mon Jul 22 13:23:53 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
6930         * sum.c (sumfile): Always print 5 digits for second number, too.
6931         Interpret "-" to mean stdin.
6933 Sat Jul 20 14:24:40 1991  David J. MacKenzie  (djm at bleen)
6935         * uniq.c: Use isblank instead of isspace, to support POSIX.2.
6936         * comm.c, pr.c, uniq.c (concat, fatal, error,
6937         pfatal_with_name, xmalloc, xrealloc): Functions removed.
6939 Sat Jul 13 02:04:53 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
6941         * nl.c: Add long-named options.  Doc fixes.
6943 Sat Jul  6 02:19:09 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
6945         * expand.c, unexpand.c [STDC_HEADERS]: Include stdlib.h.
6947         * xwrite.c [POSIX]: Include unistd.h.
6948         [STDC_HEADERS]: Don't declare errno.
6950 Sun Jun 30 23:35:16 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
6952         * uniq.c: Add long-named options.  Remove marginally useful -z
6953         option (zero padded repeat counts).
6955 Thu Jun 27 16:31:45 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
6957         * tail.c (tail_file), tac.c (save_stdin, tac_file), split.c
6958         (cwrite), head.c (head_file), cat.c (main): Check close return
6959         value for delayed error report due to NFS.
6961 Tue Jun 11 00:12:15 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
6963         * cat.c: Replace "uchar" with "unsigned char", to avoid
6964         problems with various systems' typedefs.
6966 Thu Jun  6 12:54:26 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
6968         * cat.c (cat): Interpret ENOTTY return from FIONREAD ioctl to mean
6969         operation is unsupported, for HP-UX 7.0.
6971 Sun Apr 14 21:49:17 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
6973         * sum.c: Always print five digits for first number.
6975 Fri Mar 15 16:16:54 1991  David J. MacKenzie  (djm at geech.ai.mit.edu)
6977         * cat.c, cmp.c: Don't use fileno(); not needed.
6979 Thu Jan 10 02:16:55 1991  David J. MacKenzie  (djm at albert.ai.mit.edu)
6981         * tac.c, tail.c: Change _POSIX_SOURCE to POSIX.
6983 Thu Dec 27 00:06:45 1990  David J. MacKenzie  (djm at egypt)
6985         * cut.c (cut_file_bytes, cut_file_fields): Make inbufp and
6986         outbufp global.
6987         (enlarge_line): Adjust inbufp and outbufp.
6989 Sun Sep  9 16:54:19 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
6991         * cat.c: Declare free returning void, not int, so it
6992         doesn't bomb on Xenix.
6994 Mon Sep  3 22:23:57 1990  David J. MacKenzie  (djm at coke)
6996         * tac.c: Print error messages before calling cleanup, not after.
6998 Tue Aug 28 18:05:24 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7000         * tac.c (cleanup): Return SIGTYPE, not int.
7002 Tue Aug  7 12:51:18 1990  David J. MacKenzie  (djm at apple-gunkies)
7004         * cut.c (main, usage): Add -b and -n options for POSIX.
7005         (set_fields): Don't allow SPC or TAB as number separators.
7007         * paste.c (paste_parallel): If open of any file fails, quit
7008         (for POSIX).
7010 Mon Aug  6 22:14:13 1990  David J. MacKenzie  (djm at apple-gunkies)
7012         * pr.c: Add POSIX -F option (same as -f).
7014         * uniq.c (check_file): Allow '-' to mean stdin or stdout.
7016 Mon Aug  6 14:43:30 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7018         * head.c, tail.c: Change `chars' to `bytes' globally.
7019         (main, usage): Use POSIX.2 draft 10 option syntax.
7021 Sun Aug  5 11:51:12 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7023         * cat.c (main): Don't delay error messages, so they appear
7024         where expected.
7025         (main, simple_cat, cat): Make errors in input files nonfatal.
7027 Sat Aug  4 10:11:30 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7029         * cat.c: Remove -c option added for POSIX draft 9, since POSIX
7030         draft 10 removed it.
7032         * tac.c (tac_stdin): Use fstat instead of lseek to determine
7033         whether stdin is seekable, because lseek silently fails on
7034         some special files, like tty's.
7035         tail.c (tail_chars, tail_lines): Use fstat instead of lseek;
7036         don't turn off -f for non-regular files (assume the user knows
7037         what he's doing; it might work for fifo's and sockets).
7039         * paste.c (main): If no files given, use stdin.
7040         Don't let collapse_escapes write on string constant (delim default).
7041         (paste_parallel): Don't close stdin.
7043         * cut.c (main): Use standard input for filename of "-".
7045         * comm.c (compare_files): Allow '-' to mean stdin.
7047 Fri Aug  3 13:38:28 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7049         * cut.c (enlarge_line): Take an arg giving the required amount
7050         of space.  Change callers.
7051         (main): Don't allow -t'<TAB>' without -f.
7052         Make `delim' unsigned to fix sign extension problem in comparison.
7054 Tue Jul 17 12:36:11 EDT 1990  Jay Fenlason (hack@ai.mit.edu)
7056         * pr.c  Deleted excess whitespace from ends of lines.
7057                 Modified to work with current version of getopt, which
7058                 returns 1 instead of 0 for non-options.
7059                 Reversed the meaning of the -f option, to be compatable
7060                 with real pr.
7062 Sun Jul  8 00:39:31 1990  David J. MacKenzie  (djm at apple-gunkies)
7064         * cmp.c (main, usage): Rename -L option to -c and don't have
7065         it imply -l.
7066         (printc): Take an arg to specify number of chars to pad to,
7067         for column alignment.
7068         (cmp): Respect flag_print_chars in default output format.
7069         Align columns for cmp -cl.
7071 Sat Jul  7 17:23:30 1990  David J. MacKenzie  (djm at apple-gunkies)
7073         * cmp.c: For +show-chars, have getopt return 'L' so
7074         `flag_print_chars' gets set.
7076 Fri Jun 29 01:04:19 1990  David J. MacKenzie  (djm at apple-gunkies)
7078         * tac.c (main): Initialize fastmap and translate fields of
7079         regex before compiling it.
7081 Fri Jun 22 00:38:20 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7083         * tac.c: Change +regexp to +regex for consistency with GNU find.
7085 Wed Jun 20 01:46:09 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7087         * cat.c (cat): If FIONREAD is available, only use it if it is
7088         supported by the filesystem that the file is on.
7090 Sun Jun  3 20:26:19 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7092         * cat.c (main): Add a variable to control whether the check
7093         for input file == output file is made, because no values of
7094         st_dev and st_ino should be assumed to be available for this
7095         purpose.  Only do the check for regular files.
7097         * tac.c: Use bcopy instead of memcpy.
7099 Thu May 31 00:55:36 1990  David J. MacKenzie  (djm at apple-gunkies)
7101         * head.c: Use longs instead of ints for file offsets, for 16
7102         bit machines.
7104 Tue May 22 00:56:51 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7106         * cmp.c: Change some ints to longs for 16 bit machines.
7107         (bcmp_cnt): Make char-pointer counting slightly simpler.
7109 Sat May 12 01:16:42 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7111         * cat.c (main): Allow input file to be output file for devices
7112         (ttys, etc.).  Check whether input file is output file when
7113         reading standard input.  Print any error messages for standard
7114         input.
7116         * cmp.c (bcmp_cnt): Handle int comparisons correctly on 16 bit
7117         machines as well as 32 bit ones.
7118         * cmp.c, tail.c: Use longs instead of ints for file offsets.
7120 Fri May 11 02:11:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7122         * cmp.c: Fix some exit statuses for POSIX.
7124 Tue May  8 03:41:42 1990  David J. MacKenzie  (djm at abyss)
7126         * tac.c: Use regular expressions as the record boundaries.
7127         Give better error messages.
7128         Reformat code and make it more readable.
7129         (main): Use getopt_long to parse options.
7130         (tac_stdin): Do not make a temporary file if standard input
7131         is a file.
7132         (tac_file): New function.
7133         (tac): Take an open file desc as an arg.
7134         (output): Rewrite to use its own efficient buffering.
7135         (xmalloc, xrealloc, xwrite): New functions.
7137 Sun Apr  8 20:33:20 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7139         * head.c, tail.c: Use `error' instead of `fatal_perror' and
7140         `nonfatal_perror'.  Remove some unnecessary info from messages.
7142 Wed Mar 21 09:30:18 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7144         * comm.c (main): Pass the list of files to compare_files as a
7145         char ** instead of a char *.
7146         (compare_files): Make arg a char **.
7148         * uniq.c: Declare some functions as void.
7149         Change global vars `countmode' and `mode' from ints to enums.
7150         (main): Use getopt to parse options and support POSIX options.
7151         Don't use integer_arg to parse numbers, since `-#' can't be
7152         parsed that way using getopt.
7153         (find_field): Use isspace for finding fields boundaries.
7155 Tue Mar 20 14:28:25 1990  David J. MacKenzie  (djm at pogo.ai.mit.edu)
7157         * comm.c (main): Call usage if given bad option or wrong
7158         number of args.  Exit with 0 status normally.
7159         (usage): New function.
7160         Declare some other functions as void.
7162 Wed Mar 14 10:48:40 1990  David J. MacKenzie  (djm at rice-chex)
7164         * cmp.c (main, cmp, usage): Replace -q +quick option with -L
7165         +show-chars option to add ASCII representation of bytes to -l format.
7167 Tue Mar 13 00:50:14 1990  David J. MacKenzie  (djm at rice-chex)
7169         * cmp.c (cmp): Change EOF message for POSIX compatibility.
7170         For -l format, clear bits > FF.
7172 Mon Mar  5 17:21:00 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7174         * tail.c: Move global `errors' into main instead of having
7175         nonfatal_perror set it.
7176         (tail, tail_chars, tail_file, tail_lines, pipe_chars, pipe_lines):
7177         Return an error status.
7178         (file_lines, start_chars, start_lines): Reverse the meaning of
7179         the return value.
7180         (tail_lines, tail_chars): Account for that reversal.
7182 Mon Mar  5 00:34:36 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7184         * head.c: Move global `errors' into main and have the various
7185         functions return an error status instead of setting it in
7186         nonfatal_perror.
7188 Sat Mar  3 11:27:27 1990  Torbj|rn Granlund  (tege at echnaton)
7190         * cmp.c (cmp): Call function bcmp_cnt for flag == 0 (i.e. no
7191           options specified), to compare the two blocks and count
7192           newlines simultaneously.
7193         * cmp.c New function: bcmp_cnt.
7195         * cmp.c (main): Test if output is redirected to /dev/null, and
7196           assume `-s' if this is so.
7198 Tue Feb 20 17:09:19 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7200         * cat.c: Change `argbad' from a char to a short, so it will
7201         work on machines with unsigned chars.
7203 Sat Feb 10 02:16:40 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
7205         * cmp.c (cmp): Rename `r' to `first_diff', and `x' to `smaller'.
7206         Remove unneccessary variable `c1'.  If -l was given, increase
7207         `char_number' by the number of bytes read, after producing output,
7208         rather than by the offset of the first differing bytes, before
7209         producing output.
7210         Replace if-else-if constructions with case statements for clarity.
7211         (bcmp2): Rename `n' to `nread'.
7213 Wed Dec 20 01:32:06 1989  David J. MacKenzie  (djm at hobbes.ai.mit.edu)
7215         * nl.c (proc_text): Use re_search instead of re_match.
7217 Tue Dec 19 01:26:34 1989  David J. MacKenzie  (djm at hobbes.ai.mit.edu)
7219         * nl.c: Indent.  Un-nest statements.  Use GNU regexp functions
7220         instead of System V ones.  Move function declarations together.
7221         (quit): Remove useless function.
7222         (program_name): New variable for error messages.
7223         (main): Use perror in error message.
7224         (xmalloc): New function to replace myalloc.
7225         (myalloc): Function removed.
7226         Global: use program_name and xmalloc.
7228 Sun Dec 17 00:36:36 1989  David J. MacKenzie  (djm at hobbes.ai.mit.edu)
7230         * uniq.c: Declare some functions.
7231         (main): Initialize infile and outfile.  Call usage if given
7232         invalid args.  Normally exit with 0 status instead of garbage.
7233         (usage): New function to print usage message and exit.
7234         (check_file): Remove unused variable.
7235         (readline): Compare against EOF, not < 0.
7236         (xmalloc, xrealloc): Return char *, not int.
7237         Ok to return 0 if 0 bytes requested.
7238         (lb1, lb2): Remove unused global vars.
7239         (concat): Remove unused function.
7241 Sat Dec 16 15:15:50 1989  David J. MacKenzie  (djm at hobbes.ai.mit.edu)
7243         * comm.c: Remove unused global variables lb1, lb2.
7244         (main): Remove unneeded variable.
7245         (compare_files): Remove unused arg.
7246         (readline): un-nest assignment.  Test against EOF instead of < 0.
7247         (error): Print to stderr, not stdout.
7248         (xmalloc, xrealloc): Return char * instead of int.
7249         Returning 0 is ok if 0 bytes requested (ANSI C).
7252 Local Variables:
7253 version-control: never
7254 End: