diff options
author | Jim Meyering <jim@meyering.net> | 1993-11-20 17:00:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-11-20 17:00:37 +0000 |
commit | 22ba8f3323f35f3b8239554ae52684dd15179d29 (patch) | |
tree | a6a3a572d9a32c412884bcc7659ead5011655162 /old | |
parent | 700f99c87338e8a29d585194a36775dd7915a24f (diff) | |
download | coreutils-22ba8f3323f35f3b8239554ae52684dd15179d29.tar.xz |
merge with 1.9.1a
Diffstat (limited to 'old')
-rw-r--r-- | old/sh-utils/ChangeLog | 37 | ||||
-rw-r--r-- | old/sh-utils/NEWS | 5 |
2 files changed, 42 insertions, 0 deletions
diff --git a/old/sh-utils/ChangeLog b/old/sh-utils/ChangeLog index c3e314840..0dee1d0ee 100644 --- a/old/sh-utils/ChangeLog +++ b/old/sh-utils/ChangeLog @@ -1,3 +1,40 @@ +Fri Nov 19 23:08:03 1993 Jim Meyering (meyering@comco.com) + + * who.c (print_entry): Produce reasonably formatted output even when + sizeof (this->ut_name,ut_line) are much larger than 8. For Solaris + and other SysVr4. With help from Arne H. Juul. + * configure.in (HAVE_UTMPX_H): New test; combined with test for the + ut_host field. From Arne H. Juul. + + * memcmp.c: New file. + * lib/Makefile.in [SOURCES]: Add memcmp.c. + * configure.in (AC_REPLACE_FUNCS): Add memcmp. + Add test for 8-bit clean memcmp. + + * configure.in (AC_HAVE_FUNCS): Add isascii. + * expr.c [!defined (isascii) || defined (STDC_HEADERS)]: This failed + on AIX PS/2 1.3 systems because isascii is a function and it is used + in definitions (with the necessary side effect of assigning to a + global variable) of the is* macros. Also test HAVE_ISASCII and + redefine ISASCII(c) instead of isascii. + Reported by Minh Tran-Le (tranle@intellicorp.com). + * printf.c: Ditto. + + * configure.in (AC_HAVE_HEADERS): Add sys/timeb.h; getdate.y tests + HAVE_SYS_TIMEB_H. + + * stty.c (main): Detect the case in which POSIX-conformant tcsetattr + fails and still returns zero. + +Wed Nov 17 21:05:10 1993 Jim Meyering (meyering@comco.com) + + * yes.c (main): Complete my half-finished Nov 2 change. + yes with arguments did not print newlines. From Andreas Schwab + (ls5.informatik.uni-dortmund.de). + + * stty.c (wrapf): Fix off-by-one error that could make `stty -a' + output lines one character too long. From Andreas Schwab. + Sat Nov 13 00:11:19 1993 Jim Meyering (meyering@comco.com) * Version 1.9.1. diff --git a/old/sh-utils/NEWS b/old/sh-utils/NEWS index 4b3f4c3d5..68e493af1 100644 --- a/old/sh-utils/NEWS +++ b/old/sh-utils/NEWS @@ -1,3 +1,8 @@ +User visible changes in release 1.9.2: +* fix a minor problem in formatting of output from `stty -a' +* yes with arguments outputs newlines again +* partial stty failures are reported + Major changes in release 1.9.1: * stty can be built on Suns again * minor fix for who -q |