From: "nobu (Nobuyoshi Nakada)" Date: 2013-08-08T22:13:56+09:00 Subject: [ruby-core:56453] [ruby-trunk - Feature #8693] lambda invoked by yield acts as a proc with respect to return Issue #8693 has been updated by nobu (Nobuyoshi Nakada). File 0001-returning-from-lambda.patch added I've pasted the path at the description text... ---------------------------------------- Feature #8693: lambda invoked by yield acts as a proc with respect to return https://bugs.ruby-lang.org/issues/8693#change-40992 Author: rits (First Last) Status: Assigned Priority: Normal Assignee: ktsj (Kazuki Tsujimoto) Category: core Target version: current: 2.1.0 irb(main):004:0> def m1; yield end; def m2; m1 &->{return 0}; 1 end; m2 => 0 -- http://bugs.ruby-lang.org/