diff options
author | Jim Meyering <jim@meyering.net> | 1995-11-15 21:48:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-11-15 21:48:06 +0000 |
commit | aeac9910cbd3e9b078204a27af0618b382e80c22 (patch) | |
tree | 0ba5e6ea5cb92cb60d8d4cac8d406832ab7b4bbb | |
parent | f84513b43e42fab0b8f3110f06fcdcb2a217aa10 (diff) | |
download | coreutils-aeac9910cbd3e9b078204a27af0618b382e80c22.tar.xz |
.
-rw-r--r-- | old/textutils/ChangeLog | 31 | ||||
-rw-r--r-- | old/textutils/NEWS | 1 |
2 files changed, 31 insertions, 1 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index efbbd2096..ec017ad0c 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -1,3 +1,31 @@ +Tue Nov 14 23:10:54 1995 Jim Meyering (meyering@comco.com) + + * aclocal.m4 (jm_AUTODEPS): Rename from jm_WITH_AUTODEPS. + Revamp, with suggestions from Franc,ois Pinard. + (jm_WITH_GNU_MAKE): New macro. + (jm_PROG_MKDEP): New macro. + * configure.in (jm_PROG_MKDEP): Use it. + * src/Makefile.in (MKDEP): Set it. + * lib/Makefile.in (MKDEP): Likewise. + * mkdep-Makefile: Use MKDEP, not DEP_CC. + (DEP_CFLAGS): Remove it. + + * sort.c: Add support for sorting numbers in scientific notation. + Include xstrtod.h. + (struct keyfield): Add field: general_numeric. + (usage): Describe -g option. + (general_numcompare): New function. + (keycompare): Use new comparison function when general_numeric + flag is set. + (set_ordering): Honor `g' flag. + (main): Initialize and use new field. + From Marcus Daniels <marcus@sysc.pdx.edu>. + + * configure.in (AC_REPLACE_FUNCS): Add strtod. + * lib/Makefile.in (SOURCES): Add xstrtod.c. + (OBJECTS): Add xstrtod.o. + (DISTFILES): Add xstrtod.h. + * csplit.c (cleanup): Don't exit. (interrupt_handler): Rewrite to reset default signal handler then repost caught signal. @@ -126,7 +154,8 @@ Sat Oct 28 16:02:39 1995 Jim Meyering (meyering@comco.com) * md5sum.c (md5_check): Use the same message format when there is a single file and it gets a read error or checksum mismatch as when - there are more. Suggestion from Greg Troxel (gdt@b-sgi.bbn.com). + there are more. Write that warning to standard error, not standard + output. Suggestions from Greg Troxel (gdt@b-sgi.bbn.com). Thu Oct 26 00:11:35 1995 Jim Meyering (meyering@comco.com) diff --git a/old/textutils/NEWS b/old/textutils/NEWS index a93f1dc3d..159f22baa 100644 --- a/old/textutils/NEWS +++ b/old/textutils/NEWS @@ -1,4 +1,5 @@ User-visible changes in release 1.14 +* sort accepts new option/flag, -g, for sorting numbers in scientific notation * join accepts POSIX `-o 0' field specifier. * tr 'a[b*512]' '[a*]' < /dev/null terminates * tr '[:*3][:digit:]' 'a-m' and tr 'a[=*2][=c=]' 'xyyz' no longer fail |