summaryrefslogtreecommitdiff
path: root/old/sh-utils
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-02-10 19:14:24 +0000
committerJim Meyering <jim@meyering.net>1994-02-10 19:14:24 +0000
commit4caa3d07cfffdb530250195f9df116d39b6fbcd0 (patch)
tree68fb192aa9380b9845c365cf7a65b79da3d29c80 /old/sh-utils
parent589f6b1c17d8fe77d001d3ef8a0b40c748073f1a (diff)
downloadcoreutils-4caa3d07cfffdb530250195f9df116d39b6fbcd0.tar.xz
merge with 1.9.2g
Diffstat (limited to 'old/sh-utils')
-rw-r--r--old/sh-utils/ChangeLog42
-rw-r--r--old/sh-utils/NEWS6
2 files changed, 47 insertions, 1 deletions
diff --git a/old/sh-utils/ChangeLog b/old/sh-utils/ChangeLog
index cebf5f472..27bd14f9d 100644
--- a/old/sh-utils/ChangeLog
+++ b/old/sh-utils/ChangeLog
@@ -1,4 +1,41 @@
-Mon Jan 24 12:57:18 1994 Jim Meyering (meyering@comco.com)
+Thu Feb 10 01:22:37 1994 Jim Meyering (meyering@comco.com)
+
+ * stty.c [CSWTCH] (__sparc__ && __svr4__): Define `swtch' to
+ _POSIX_VDISABLE by default. Otherwise, the default settings on
+ SunOS 5.3 (from /usr/include/sys/termios.h) have both `swtch'
+ and `susp' set to ^Z. Those default settings are not unusual.
+ What is unusual is that with such settings on SunOS 5.3, the tty
+ driver doesn't generate a signal for control-Z. Reported by
+ Brent Wiese <brent@dot.imgen.bcm.tmc.edu>.
+
+ * stty.c (main) [CIBAUD]: Don't report an error on SunOS 4.1.x
+ systems if the only difference is in this nybble of c_cflag.
+ See the comments for the gory details. Thanks to
+ Erez "HWank1" Zadok <ezk@cs.columbia.edu> for reporting this
+ and helping me reproduce it.
+
+Tue Feb 01 00:59:56 1994 Jim Meyering (meyering@comco.com)
+
+ * stty.c (main): Call tcsetattr only if we've updated tty modes,
+ not e.g. if we've changed the window size.
+
+ * Update Copyright dates in src/*.
+
+Fri Jan 28 11:02:21 1994 Jim Meyering (meyering@comco.com)
+
+ * configure.in: Don't set LDFLAGS since linking now uses both
+ LDFLAGS and CFLAGS.
+
+Wed Jan 26 10:54:02 1994 Jim Meyering (meyering@comco.com)
+
+ * stty.c (get_win_size): New function. Try getting size first
+ for the device on stdout. Try stdin only if that fails. Suggested
+ by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>.
+ (set_win_size): Call get_win_size instead of calling ioctl directly.
+ (display_window_size): Ditto.
+ (screen_columns): Ditto.
+
+Mon Jan 24 22:57:18 1994 Jim Meyering (meyering@comco.com)
* stty.c (set_window_size): Work around SunOS 4.x kernel bug that
makes `stty rows 34 cols 80;stty rows 0;stty cols 0' incorrectly
@@ -6,6 +43,9 @@ Mon Jan 24 12:57:18 1994 Jim Meyering (meyering@comco.com)
The kernel bug is fixed in Solaris 2. Mostly from Alexander Dupuy
<dupuy@cs.columbia.edu>.
+ * src/Makefile.in: Use both LDFLAGS and CFLAGS when linking.
+ * man/Makefile.in: Use binprefix as the default manprefix.
+
Thu Jan 13 17:27:38 1994 Jim Meyering (meyering@comco.com)
* src/Makefile.in: Change all link commands to use both $(CFLAGS)
diff --git a/old/sh-utils/NEWS b/old/sh-utils/NEWS
index bc8bf81c7..c659447d8 100644
--- a/old/sh-utils/NEWS
+++ b/old/sh-utils/NEWS
@@ -1,4 +1,10 @@
User visible changes in release 1.9.3
+* stty defaults `swtch' to undefined for Solaris so `susp' (^Z) will work.
+* stty no longer gives an error message when it finds a spurious difference
+ (due to buggy tcsetattr/tcsetattr) between requested and current tty
+ modes under SunOS 4.1.x.
+* stty no longer fails if the ioctl to determine the display width fails
+ when displaying settings.
* stty works around SunOS 4.x kernel bug that made `stty rows 0 cols 0' fail.
* who and tee no longer fail gratuitously when continued after an
interrupted read or write system call.