Skip to content

Commit ece260c

Browse files
committed
* merge -c 11960
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@12011 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent a4d3565 commit ece260c

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Sat Mar 3 15:41:33 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* parse.y (stmt, arg): should not omit lhs of OP_ASGN1 even if
4+
empty. [ruby-dev:30452]
5+
16
Wed Feb 28 20:51:32 2007 URABE Shyouhei <shyouhei@ruby-lang.org>
27

38
* pack.c (pack_unpack): properly ignore non-base64 octets such as

parse.y

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,7 @@ stmt : kALIAS fitem {lex_state = EXPR_FNAME;} fitem
542542
NODE *args;
543543

544544
value_expr($6);
545+
if (!$3) $3 = NEW_ZARRAY();
545546
args = arg_concat($6, $3);
546547
if ($5 == tOROP) {
547548
$5 = 0;
@@ -1009,6 +1010,7 @@ arg : lhs '=' arg
10091010
NODE *args;
10101011

10111012
value_expr($6);
1013+
if (!$3) $3 = NEW_ZARRAY();
10121014
args = arg_concat($6, $3);
10131015
if ($5 == tOROP) {
10141016
$5 = 0;

version.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#define RUBY_VERSION "1.8.5"
2-
#define RUBY_RELEASE_DATE "2007-02-28"
2+
#define RUBY_RELEASE_DATE "2007-03-08"
33
#define RUBY_VERSION_CODE 185
4-
#define RUBY_RELEASE_CODE 20070228
5-
#define RUBY_PATCHLEVEL 24
4+
#define RUBY_RELEASE_CODE 20070308
5+
#define RUBY_PATCHLEVEL 25
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8
99
#define RUBY_VERSION_TEENY 5
1010
#define RUBY_RELEASE_YEAR 2007
11-
#define RUBY_RELEASE_MONTH 2
12-
#define RUBY_RELEASE_DAY 28
11+
#define RUBY_RELEASE_MONTH 3
12+
#define RUBY_RELEASE_DAY 8
1313

1414
RUBY_EXTERN const char ruby_version[];
1515
RUBY_EXTERN const char ruby_release_date[];

0 commit comments

Comments
 (0)