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

* node.c (add_id): remove duplicated rb_id2str() call.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30746 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2011-01-31 14:29:49 +00:00
parent ff4ba406a2
commit 6b06ba0c05
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Jan 31 23:27:23 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* node.c (add_id): remove duplicated rb_id2str() call.
Sun Jan 30 17:19:46 2011 Tanaka Akira <akr@fsij.org>
* missing/langinfo.c: parenthesize macro arguments.

2
node.c
View file

@ -77,7 +77,7 @@ add_id(VALUE buf, ID id)
else {
VALUE str = rb_id2str(id);
if (str) {
A(":"); AR(rb_id2str(id));
A(":"); AR(str);
}
else {
A("(internal variable)");