summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-10 17:24:52 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-10 17:24:52 +0000
commit8a3eb83c61370d7b0642831c7d63797500aaf0e1 (patch)
tree22803814438e339e990ac1363e455253945f9619
parent1bf63d9e78751859766331358080084632429cdf (diff)
downloadruby-8a3eb83c61370d7b0642831c7d63797500aaf0e1.tar.gz
ruby-8a3eb83c61370d7b0642831c7d63797500aaf0e1.tar.xz
ruby-8a3eb83c61370d7b0642831c7d63797500aaf0e1.zip
* eval.c (rb_method_missing): RDoc update patch from Hugh Sasse
<hgs AT dmu.ac.uk>. [ruby-core:12932] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14188 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--eval.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index cc5788be3..07634e81b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Dec 11 02:23:32 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * eval.c (rb_method_missing): RDoc update patch from Hugh Sasse
+ <hgs AT dmu.ac.uk>. [ruby-core:12932]
+
Tue Dec 11 01:51:34 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/net/http.rb (Net::HTTP::get): now supports gzip
diff --git a/eval.c b/eval.c
index e7d144e83..4057b09f6 100644
--- a/eval.c
+++ b/eval.c
@@ -1269,6 +1269,9 @@ stack_check(void)
* are any arguments that were passed to it. By default, the interpreter
* raises an error when this method is called. However, it is possible
* to override the method to provide more dynamic behavior.
+ * If it is decided that a particular method should not be handled, then
+ * <i>super</i> should be called, so that ancestors can pick up the
+ * missing method.
* The example below creates
* a class <code>Roman</code>, which responds to methods with names
* consisting of roman numerals, returning the corresponding integer