summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-04-04 16:27:12 +0000
committerJim Meyering <jim@meyering.net>1998-04-04 16:27:12 +0000
commit902bbe7707993ae7ac66b8bfe2064f884c41e323 (patch)
tree82cd0cd13004fbdf5de45f84bb504271d037fc0a
parentc9a9ec9b534d998f8385c6b89842a15c5bdda828 (diff)
downloadcoreutils-902bbe7707993ae7ac66b8bfe2064f884c41e323.tar.xz
*** empty log message ***
-rw-r--r--old/sh-utils/ChangeLog28
1 files changed, 28 insertions, 0 deletions
diff --git a/old/sh-utils/ChangeLog b/old/sh-utils/ChangeLog
index fb4e95ede..e57b04379 100644
--- a/old/sh-utils/ChangeLog
+++ b/old/sh-utils/ChangeLog
@@ -1,5 +1,33 @@
1998-04-04 Jim Meyering <meyering@eng.ascend.com>
+ * tests/Makefile.am (SUBDIRS): Add stty.
+ * tests/stty/row-col-1: New file.
+ * tests/stty: New directory.
+ * configure.in (AC_OUTPUT): Add tests/stty/Makefile.
+
+ * src/stty.c: Use STREQ in place of strcmp everywhere.
+ (valid_options): Indent.
+ Parenthesize assignment in while expr.
+ (main): s/case 'f':/case 'F':/
+ Tweak error messages to make them consistent.
+ Remove #if-0'd block.
+ Move dcl of `fdflags' into scope where it's used.
+ Remove dcl of unused `cp'.
+
+ [1998-03-31 Theodore Ts'o <tytso@rsts-11.mit.edu>]
+ * src/stty.c (valid_options): New function.
+ (main): Fix broken options parsing that worked only
+ by serendipity (getopt_long_only already parsed short options; no
+ need to parse them again manually!). Add support for the --file
+ option, which allows the user to specify the device whose line
+ settings are to be set. This is necessary because POSIX ttys will
+ block waiting for carrier detect to go high if CLOCAL is not set,
+ unless the device is opened with the O_NONBLOCK flag.
+ Unfortunately, the shell doesn't use this flag, so users lose.
+ Opening the device in stty is the easist way to fix this.
+ (speeds): Add support for 230400 and 460800 line speeds, which are
+ supported by Linux.
+
* acconfig.h (uintmax_t): Add #undef.
* configure.in (jm_AC_HEADER_INTTYPES_H): Use it.