diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/debug.rb | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Tue Aug 30 23:25:45 2005 NAKAMURA, Hiroshi <[email protected]> + + * lib/debug.rb: no need to restart at exit. + Tue Aug 30 23:20:19 2005 Nobuyoshi Nakada <[email protected]> * eval.c (rb_rescue2): intialization miss. fixed: [ruby-dev:26917] diff --git a/lib/debug.rb b/lib/debug.rb index 70e8aea148..8b522821a5 100644 --- a/lib/debug.rb +++ b/lib/debug.rb @@ -257,9 +257,6 @@ class Context MUTEX.lock unless defined?($debugger_restart) and $debugger_restart callcc{|c| $debugger_restart = c} - at_exit { - $debugger_restart.call - } end set_last_thread(Thread.current) frame_pos = 0 |