merge with 1.9

This commit is contained in:
Jim Meyering
1993-11-10 06:05:02 +00:00
parent a1b9bc9a42
commit 39fd5971dd
2 changed files with 6 additions and 3 deletions
+2
View File
@@ -627,6 +627,8 @@ ToSeconds(Hours, Minutes, Seconds, Meridian)
if (Hours < 1 || Hours > 12)
return -1;
return ((Hours + 12) * 60L + Minutes) * 60L + Seconds;
default:
abort ();
}
/* NOTREACHED */
}
+4 -3
View File
@@ -2,9 +2,10 @@ Major changes in release 1.9:
* su fails gracefully when getpass is unable to open /dev/tty.
* printenv and tty detect and report write errors
* fix bug in stty
* stty supports accepts the new options status and flush on systems that
provide them
* fix bugs in expr
* stty accepts the new options status and flush on systems that provide them
* `expr 1 / 0' gives an error message rather than trying to divide by zero
* expr's `substr' doesn't overrun malloc'd buffer
* expr recognizes the string `0' as zero
* better support for Linux, Dec Alpha, and SGI Irix
* all programs (even true and false) accept --version and --help options
* uname's --version option is no longer equivalent to its -v option