diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-24 05:18:47 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-07-24 05:18:47 +0000 |
| commit | 242d1879f3105377fe1153a21043bebbbaa7b208 (patch) | |
| tree | 425980c3ebfb78d38067b3b01f2df97a9dc0853d /ChangeLog | |
| parent | 3e278b0745c94b5bba04c680778b21b6a0d785d9 (diff) | |
| download | ruby-242d1879f3105377fe1153a21043bebbbaa7b208.tar.gz ruby-242d1879f3105377fe1153a21043bebbbaa7b208.tar.xz ruby-242d1879f3105377fe1153a21043bebbbaa7b208.zip | |
* eval.c (thgroup_add): no warning for terminated threads.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jul 24 13:32:56 2003 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (thgroup_add): no warning for terminated threads. + Thu Jul 24 13:09:26 2003 Tanaka Akira <akr@m17n.org> * lib/pathname.rb: added. @@ -39,6 +43,14 @@ Thu Jul 24 03:41:30 2003 NAKAMURA Usaku <usa@ruby-lang.org> * ext/tcltklib/tcltklib.c (ip_init): need at least one statement after label. +Thu Jul 24 01:48:03 2003 Yukihiro Matsumoto <matz@ruby-lang.org> + + * lib/cgi.rb (CGI::QueryExtension::[]): should return StringIO (or + Tempfile) for multipart/form. + + * variable.c (rb_define_const): give warning for non constant + name. [ruby-core:01287] + Thu Jul 24 01:51:08 2003 GOTOU Yuuzou <gotoyuzo@notwork.org> * lib/webrick: imported. @@ -58,6 +70,10 @@ Wed Jul 23 23:06:59 2003 WATANABE Hirofumi <eban@ruby-lang.org> * file.c (DOSISH): better Cygwin support. +Wed Jul 23 19:13:21 2003 Yukihiro Matsumoto <matz@ruby-lang.org> + + * string.c (rb_str_split_m): the receiver may be empty string. + Wed Jul 23 18:43:00 2003 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> * lib/erb.rb: import erb-2.0.4b1. @@ -23203,5 +23219,10 @@ Wed Aug 13 17:51:46 1997 Yukihiro Matsumoto <matz@netlab.co.jp> * version 1.1 alpha0 released. Local variables: -add-log-time-format: current-time-string +add-log-time-format: (lambda () + (let* ((time (current-time)) + (diff (+ (cadr time) 32400)) + (lo (% diff 65536)) + (hi (+ (car time) (/ diff 65536)))) + (format-time-string "%c" (list hi lo) t))) end: |
