diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-22 10:56:43 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-22 10:56:43 +0000 |
| commit | 22765d3c617ca057c56df321355bf9354e345dc7 (patch) | |
| tree | 37d7e113e346ad22cacc4a6023257a3a7118ebe9 | |
| parent | d9d646a2829de38a09b4c630a93b31a2d3067b71 (diff) | |
| download | ruby-22765d3c617ca057c56df321355bf9354e345dc7.tar.gz ruby-22765d3c617ca057c56df321355bf9354e345dc7.tar.xz ruby-22765d3c617ca057c56df321355bf9354e345dc7.zip | |
* proc.c (proc_to_s): revert the change from %p to %lx at YARV
merge time.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12584 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | proc.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Fri Jun 22 19:55:51 2007 Tanaka Akira <akr@fsij.org> + + * proc.c (proc_to_s): revert the change from %p to %lx at YARV + merge time. + Fri Jun 22 19:33:49 2007 Tanaka Akira <akr@fsij.org> * proc.c (proc_to_s): show is_lambda. @@ -552,7 +552,7 @@ proc_to_s(VALUE self) if (iseq->insn_info_tbl) { line_no = iseq->insn_info_tbl[0].line_no; } - str = rb_sprintf("#<%s:%lx@%s:%d%s>", cname, self, + str = rb_sprintf("#<%s:%p@%s:%d%s>", cname, self, RSTRING_PTR(iseq->filename), line_no, proc->is_lambda ? " (lambda)" : ""); |
