Actions
Bug #847
closeddebug.rb reports extraneous information
    Bug #847:
    debug.rb reports extraneous information
  
Description
=begin
dave[RUBY3/Book 14:50:01*] ruby -v -r debug t.rb
ruby 1.9.1 (2008-12-10 revision 20602) [i386-darwin9.5.0]
Debug.rb
Emacs support available.
/usr/local/rubybook/lib/ruby/1.9.1/debug.rb:904:      <<<  this seems wrong
(rdb:1)
=end
        
           Updated by yugui (Yuki Sonoda) almost 17 years ago
          Updated by yugui (Yuki Sonoda) almost 17 years ago
          
          
        
        
      
      - Assignee set to ko1 (Koichi Sasada)
- Target version set to 1.9.1 Release Candidate
=begin
=end
        
           Updated by yugui (Yuki Sonoda) almost 17 years ago
          Updated by yugui (Yuki Sonoda) almost 17 years ago
          
          
        
        
      
      - Due date set to 12/24/2008
=begin
=end
        
           Updated by wanabe (_ wanabe) almost 17 years ago
          Updated by wanabe (_ wanabe) almost 17 years ago
          
          
        
        
      
      =begin
I suppose that set_trace_func should be completely final task in debug.rb.
How about this?
Index: lib/debug.rb¶
--- lib/debug.rb        (revision 21058)
+++ lib/debug.rb        (working copy)
@@ -898,10 +898,10 @@
stdout.printf "Debug.rb\n"
stdout.printf "Emacs support available.\n\n"
+RubyVM::InstructionSequence.compile_option = {
- trace_instruction: true
 +}
 set_trace_func proc { |event, file, line, id, binding, klass, *rest|
 DEBUGGER__.context.trace_func event, file, line, id, binding, klass
 }
 -RubyVM::InstructionSequence.compile_option = {
- trace_instruction: true
 -}
 end
 =end
        
           Updated by yugui (Yuki Sonoda) almost 17 years ago
          Updated by yugui (Yuki Sonoda) almost 17 years ago
          
          
        
        
      
      - Category set to YARV
- Priority changed from Normal to 3
=begin
=end
        
           Updated by yugui (Yuki Sonoda) almost 17 years ago
          Updated by yugui (Yuki Sonoda) almost 17 years ago
          
          
        
        
      
      - Due date changed from 12/24/2008 to 01/20/2009
- Target version changed from 1.9.1 Release Candidate to 1.9.1 RC2
=begin
=end
        
           Updated by ko1 (Koichi Sasada) almost 17 years ago
          Updated by ko1 (Koichi Sasada) almost 17 years ago
          
          
        
        
      
      - Status changed from Open to Closed
- % Done changed from 0 to 100
=begin
Applied in changeset r21570.
=end
Actions