summaryrefslogtreecommitdiffstats
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
commit11ff932d96c2b6d86d311ea76f187c00173b7dad (patch)
tree3080e9c1ab5d5c785a3d90b7b2f35d3eb168a77a /insns.def
parent197cc56a1b96ed70aa804c4cc1f0351c2364b991 (diff)
downloadruby-11ff932d96c2b6d86d311ea76f187c00173b7dad.tar.gz
ruby-11ff932d96c2b6d86d311ea76f187c00173b7dad.tar.xz
ruby-11ff932d96c2b6d86d311ea76f187c00173b7dad.zip
* insns.def (invokesuper): fix error message.
git-svn-id: http://svn.ruby-lang.org/repos/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 8ad42c7ca..a13dff658 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 {