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

* vm_eval.c (rb_search_method_entry): avoid trigraph.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-11-20 12:17:29 +00:00
parent c9fc0ff39a
commit 0089bfe4dd
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Nov 20 21:16:54 2009 Tanaka Akira <akr@fsij.org>
* vm_eval.c (rb_search_method_entry): avoid trigraph.
Thu Nov 19 23:17:06 2009 Shugo Maeda <shugo@ruby-lang.org>
* lib/net/ftp.rb (putbinaryfile): use APPE for resume.

View file

@ -345,7 +345,7 @@ rb_search_method_entry(VALUE recv, ID mid)
rb_id2name(mid), typestr, (void *)recv);
else
rb_raise(rb_eNotImpError,
"method `%s' called on hidden T_???(0x%02x) object (%p)",
"method `%s' called on hidden T_???" "(0x%02x) object (%p)",
rb_id2name(mid), type, (void *)recv);
}
else {