Revert r37316
The commit introduces too many failures and disturbs release engineering. Re-commit it with fixed tests. Thu Oct 25 13:09:01 2012 NAKAMURA Usaku <usa@ruby-lang.org> * parse.y: show a warning for concatenating string literals because it will be deprecated in the future. patched by mame (Yusuke Endoh) at [ruby-core:44207]. [ruby-core:44156] [Feature #6265] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
db1f7079b6
commit
c6629c48e6
@ -19,13 +19,6 @@ Thu Oct 25 13:35:07 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
|||||||
|
|
||||||
* tool/mkconfig.rb: remove string literal concatenation.
|
* tool/mkconfig.rb: remove string literal concatenation.
|
||||||
|
|
||||||
Thu Oct 25 13:09:01 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
||||||
|
|
||||||
* parse.y: show a warning for concatenating string literals because
|
|
||||||
it will be deprecated in the future.
|
|
||||||
patched by mame (Yusuke Endoh) at [ruby-core:44207].
|
|
||||||
[ruby-core:44156] [Feature #6265]
|
|
||||||
|
|
||||||
Wed Oct 24 18:49:16 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Wed Oct 24 18:49:16 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* ext/objspace/objspace.c (type2sym, count_objects_size): use enum
|
* ext/objspace/objspace.c (type2sym, count_objects_size): use enum
|
||||||
|
1
parse.y
1
parse.y
@ -3810,7 +3810,6 @@ string : tCHAR
|
|||||||
| string string1
|
| string string1
|
||||||
{
|
{
|
||||||
/*%%%*/
|
/*%%%*/
|
||||||
rb_warning0("string concatenation syntax will be deprecated");
|
|
||||||
$$ = literal_concat($1, $2);
|
$$ = literal_concat($1, $2);
|
||||||
/*%
|
/*%
|
||||||
$$ = dispatch2(string_concat, $1, $2);
|
$$ = dispatch2(string_concat, $1, $2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user