1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* parse.y (mrhs): need to append by arg_append().

[ruby-talk:239385]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11760 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-02-16 10:58:04 +00:00
parent d908340910
commit 163163afdf
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Fri Feb 16 19:19:21 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (mrhs): need to append by arg_append().
[ruby-talk:239385]
Fri Feb 16 11:18:21 2007 Eric Hodel <drbrain@segment7.net>
* lib/.document: Apply patch for irb, e2mmap and README by Hugh Sasse

View file

@ -2412,7 +2412,7 @@ args : arg_value
mrhs : args ',' arg_value
{
/*%%%*/
$$ = list_append($1, $3);
$$ = arg_append($1, $3);
/*%
$$ = mrhs_add(args2mrhs($1), $3);
%*/

View file

@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0"
#define RUBY_RELEASE_DATE "2007-02-15"
#define RUBY_RELEASE_DATE "2007-02-16"
#define RUBY_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20070215
#define RUBY_RELEASE_CODE 20070216
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 2
#define RUBY_RELEASE_DAY 15
#define RUBY_RELEASE_DAY 16
RUBY_EXTERN const char ruby_version[];
RUBY_EXTERN const char ruby_release_date[];