summaryrefslogtreecommitdiff
path: root/lib/tempfile.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-15 16:45:03 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-15 16:45:03 +0000
commit67d54f209d28019cc5d8b332706dd9950b56bdc7 (patch)
tree19afa15048b4c73f2a701a9b1ebf09a8c82ef203 /lib/tempfile.rb
parent30b3ce3445f5cbf94080a8408b83eaafaa264baa (diff)
* array.c (rb_ary_update): pedantic check to detect
rb_ary_to_ary() to modify the receiver. [ruby-dev:24861] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/tempfile.rb')
-rw-r--r--lib/tempfile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index 828e1cf8f3..65b4bc69ac 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -144,7 +144,7 @@ class Tempfile < DelegateClass(File)
class << self
def callback(data) # :nodoc:
pid = $$
- lambda{
+ Proc.new {
if pid == $$
path, tmpfile, cleanlist = *data