summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-08 07:46:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-08 07:46:18 +0000
commita292199da4ff0dfd8fef1754177e3ee63ffc13fe (patch)
tree2202dd929d2ee937c5c6c048b0d271478ff1df4a /lib
parent855af7d4163e661a495e8bf03bfa101d682bc9f7 (diff)
downloadruby-a292199da4ff0dfd8fef1754177e3ee63ffc13fe.tar.gz
ruby-a292199da4ff0dfd8fef1754177e3ee63ffc13fe.tar.xz
ruby-a292199da4ff0dfd8fef1754177e3ee63ffc13fe.zip
* lib/pp.rb (PP::PPMethods::object_address_group): suppress negative
sign for higher heap areas. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/pp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pp.rb b/lib/pp.rb
index 81a453d9a..8176e2d6a 100644
--- a/lib/pp.rb
+++ b/lib/pp.rb
@@ -193,7 +193,7 @@ class PP < PrettyPrint
end
def object_address_group(obj, &block)
- group(1, sprintf('#<%s:0x%x', obj.class.to_s, obj.__id__ * 2), '>', &block)
+ group(1, sprintf('#<%s:0x%.x', obj.class.to_s, obj.__id__ * 2), '>', &block)
end
def comma_breakable