diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-24 15:46:22 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-24 15:46:22 +0000 |
| commit | 11ff932d96c2b6d86d311ea76f187c00173b7dad (patch) | |
| tree | 3080e9c1ab5d5c785a3d90b7b2f35d3eb168a77a | |
| parent | 197cc56a1b96ed70aa804c4cc1f0351c2364b991 (diff) | |
| download | ruby-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
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | insns.def | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Jun 25 00:45:02 2007 Koichi Sasada <ko1@atdot.net> + + * insns.def (invokesuper): fix error message. + Mon Jun 25 00:14:13 2007 Koichi Sasada <ko1@atdot.net> * vm.c: some refactoring. @@ -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 { |
