summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-29 23:38:09 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-29 23:38:09 +0000
commitb58b0d1a6d58b5698a2085be1e4f2549f9224ad9 (patch)
tree66f3c10112ec4bfb91fddfcbbe5805870061ffd6 /ChangeLog
parentf692d47157e31576e1ca4104fa6990e2542a5aa7 (diff)
Fix parse problem with complex yields
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 827ea49f5..ea03bbf5a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Dec 30 08:32:32 2003 Dave Thomas <dave@pragprog.com>
+
+ * lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_method):
+ Handle undoing nsting of yield parameters correctly for:
+
+ def each_entry(&b) Dir.foreach(@path) {|f| yield P.new(f) } end
+
+
Tue Dec 30 07:30:00 2003 Gavin Sinclair <gsinclair@soyabean.com.au>
* lib/pathname.rb: Added documentation.