* class.c (rb_obj_basic_to_s_p): typo. Please become familiar with

the ANSI style. 



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2009-10-22 12:12:24 +00:00
Родитель 4079c46912
Коммит 359d932332
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Oct 22 21:10:39 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* class.c (rb_obj_basic_to_s_p): typo. Please become familiar with
the ANSI style.
Thu Oct 22 20:20:27 2009 Tanaka Akira <akr@fsij.org>
* test/ruby/envutil.rb (assert_in_out_err): test_stdout and

Просмотреть файл

@ -1258,7 +1258,7 @@ rb_define_attr(VALUE klass, const char *name, int read, int write)
}
int
rb_obj_basic_to_s_p(obj)
rb_obj_basic_to_s_p(VALUE obj)
{
const rb_method_entry_t *me = rb_method_entry(CLASS_OF(obj), rb_intern("to_s"));
if (me && me->def && me->def->type == VM_METHOD_TYPE_CFUNC &&