summaryrefslogtreecommitdiff
path: root/insns.def
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-24 15:46:22 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-24 15:46:22 +0000
commit61fa3576222f7bee1ecc8486075baee62936c840 (patch)
tree3080e9c1ab5d5c785a3d90b7b2f35d3eb168a77a /insns.def
parent97ba019c9410ccb5ec76f6b54fd2e140b7583038 (diff)
* insns.def (invokesuper): fix error message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/insns.def b/insns.def
index 8ad42c7ca9..a13dff6580 100644
--- a/insns.def
+++ b/insns.def
@@ -1258,7 +1258,7 @@ invokesuper
if (TOPN(num) == Qfalse) {
/* zsuper */
- rb_raise(rb_eRuntimeError, "zsuper from method defined by define_method() is not supported. Specify all arguments.");
+ rb_raise(rb_eRuntimeError, "implicit argument passing of super from method defined by define_method() is not supported. Specify all arguments explicitly.");
}
}
else {