summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-26 04:50:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-26 04:50:36 +0000
commite9225b9bb7d1d5d2552ffed53c1287439760c2c2 (patch)
tree6bcbb61d43f1203cd0586e4e3f72d416b6423298 /eval.c
parentb208787a4f70b5c89756e8a230ca946e83d3657c (diff)
downloadruby-e9225b9bb7d1d5d2552ffed53c1287439760c2c2.tar.gz
ruby-e9225b9bb7d1d5d2552ffed53c1287439760c2c2.tar.xz
ruby-e9225b9bb7d1d5d2552ffed53c1287439760c2c2.zip
* io.c (rb_io_initialize): should retrieve flags from copying file
descriptor. [ruby-dev:24961] * eval.c (method_missing): raise TypeError for classes do not have allocators. [ruby-core:03752] * lib/erb.rb: [ruby-core:03786] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index e2651b5ca..a2e50cce5 100644
--- a/eval.c
+++ b/eval.c
@@ -5356,7 +5356,7 @@ method_missing(obj, id, argc, argv, call_status)
POP_FRAME();
}
else if (id == ID_ALLOCATOR) {
- rb_raise(rb_eNoMethodError, "allocator undefined for %s", rb_class2name(obj));
+ rb_raise(rb_eTypeError, "allocator undefined for %s", rb_class2name(obj));
}
nargv = ALLOCA_N(VALUE, argc+1);