1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/sample/irbtkw.rbw: fails to exit process.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@12001 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2007-03-06 02:55:54 +00:00
parent 4ed3e30461
commit 3fe46bdb97
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Tue Mar 6 11:53:25 2007 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/sample/irbtkw.rbw: fails to exit process.
Mon Mar 5 20:14:49 2007 Akinori MUSHA <knu@iDaemons.org>
* time.c (time_to_s): Correct the wrong format which did not

View file

@ -26,7 +26,11 @@ console.yscrollbar(TkScrollbar.new(top, :width=>10).pack(:before=>console,
:side=>:right,
:expand=>false,
:fill=>:y))
ev_loop = Thread.new{Tk.mainloop}
irb_thread = nil
ev_loop = Thread.new{
Tk.mainloop
irb_thread.kill if irb_thread
}
# window position control
root = Tk.root
@ -116,4 +120,5 @@ console.bind('Control-c'){
irb_thread.join
# exit
ev_thread.kill
Tk.exit