Skip to content

Commit 072943a

Browse files
committed
merge revision(s) 14883:
* time.c (time_arg): use converted object. [ruby-core:14759] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@17008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent f161d2b commit 072943a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Sun Jun 8 06:03:45 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* time.c (time_arg): use converted object. [ruby-core:14759]
4+
15
Sun Jun 8 06:01:25 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
26

37
* io.c (fptr_finalize): clear errno first. [ruby-talk:284492]

time.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ time_arg(argc, argv, tm, usec)
349349
tm->tm_mon = -1;
350350
for (i=0; i<12; i++) {
351351
if (RSTRING(s)->len == 3 &&
352-
strcasecmp(months[i], RSTRING(v[1])->ptr) == 0) {
352+
strcasecmp(months[i], RSTRING(s)->ptr) == 0) {
353353
tm->tm_mon = i;
354354
break;
355355
}

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2008-06-08"
33
#define RUBY_VERSION_CODE 185
44
#define RUBY_RELEASE_CODE 20080608
5-
#define RUBY_PATCHLEVEL 163
5+
#define RUBY_PATCHLEVEL 164
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)