summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-04 21:29:11 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-04 21:29:11 +0000
commitd99f6d7ff6c3506658c63b7ab3533522daf1de29 (patch)
treeff53aacfdfe72c3a5a3bb7add7801d936c6d3230
parentf2dfae7ea0258fcde14d9938c00dc894b7b3ec39 (diff)
- Slightly fix one of the last entries. (stdin -> stdin or stdout)
- Fix indentation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2164 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog19
1 files changed, 10 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 60633b822c..79f55dfb94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,7 +4,7 @@ Tue Mar 5 05:56:29 2002 Akinori MUSHA <knu@iDaemons.org>
- Accept options with the colon in the first argument;
getopts("a:bcd:") is equivalent to getopts("bc", "a:", "d:").
- Do not discard the argument that caused an error.
- - Do not discard '-', which commonly stands for stdin.
+ - Do not discard '-', which commonly stands for stdin or stdout.
- Allow specifying a long option with a value using '='.
(command --long-option=value)
- Stop reading options when it meets a non-option argument.
@@ -27,22 +27,23 @@ Fri Mar 1 11:22:51 2002 Amos Gouaux <amos+ruby@utdallas.edu>
* lib/net/imap.rb (getquotaroot): new method.
* lib/net/imap.rb (setacl): remove the rights if the rights
- parameter is nil.
+ parameter is nil.
* lib/net/imap.rb (getacl): return an array of MailboxACLItem.
Fri Mar 1 06:25:49 2002 Tanaka Akira <akr@m17n.org>
* ext/socket/extconf.rb (have_struct_member): new method.
- check msg_control and msg_accrights in struct msghdr. check sys/uio.h.
+ check msg_control and msg_accrights in struct msghdr. check
+ sys/uio.h.
* socket/socket.c: include sys/uio.h if available.
- (thread_read_select): new function.
- (unix_send_io): ditto.
- (unix_recv_io): ditto.
- (unix_s_socketpair): ditto.
- (Init_socket): define UNIXSocket#send_io, UNIXSocket#recv_io,
- UNIXSocket.socketpair and UNIXSocket.pair.
+ (thread_read_select): new function.
+ (unix_send_io): ditto.
+ (unix_recv_io): ditto.
+ (unix_s_socketpair): ditto.
+ (Init_socket): define UNIXSocket#send_io, UNIXSocket#recv_io,
+ UNIXSocket.socketpair and UNIXSocket.pair.
* dln.c (dln_load): fix typo.