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

* marshal.c (r_object0): no need to call r_entry for immediate values.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-01-31 08:31:20 +00:00
parent 1672df1870
commit 1e3aa62254
3 changed files with 5 additions and 6 deletions

View file

@ -1,5 +1,5 @@
assert_normal_exit %q{
Marshal.load(Marshal.dump({"k"=>"v"}), lambda {|v| })
Marshal.load(Marshal.dump({"k"=>"v"}), lambda {|v| v})
}