-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* eval.c (rb_load): allow interrupt during loaded program
evaluation. [ruby-dev:21834] * hash.c (rb_hash_fetch): always warn if default argument and a block are supplied at the same time. [ruby-dev:21842] * hash.c (env_fetch): ditto. * array.c (rb_ary_fetch): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Nov 6, 2003
1 parent
113423b
commit 818d6a1
Showing
9 changed files
with
278 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,18 @@ Wed Nov 5 22:55:16 2003 Hidetoshi NAGAI <[email protected]> | |
* ext/tk/lib/tk.rb : add TkMenu#set_focus support Tcl/Tk's | ||
tk_menuSetFocus | ||
|
||
Wed Nov 5 17:33:45 2003 Yukihiro Matsumoto <[email protected]> | ||
|
||
* eval.c (rb_load): allow interrupt during loaded program | ||
evaluation. [ruby-dev:21834] | ||
|
||
* hash.c (rb_hash_fetch): always warn if default argument and a | ||
block are supplied at the same time. [ruby-dev:21842] | ||
|
||
* hash.c (env_fetch): ditto. | ||
|
||
* array.c (rb_ary_fetch): ditto. | ||
|
||
Wed Nov 5 19:08:47 2003 Nobuyoshi Nakada <[email protected]> | ||
|
||
* lib/optparse.rb (OptionParser::Switch::PlacedArgument::parse): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1295,6 +1295,7 @@ def kill_sub_thread | |
end | ||
|
||
def run | ||
raise if Thread.critical | ||
Thread.start do | ||
begin | ||
while true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.