* lib/tracer.rb (Tracer::Tracer.add_filter): turn on tracer mode
only when caller() level size is one. [ruby-core:07389] * lib/rdoc/parsers/parse_rb.rb: need not to require "tracer". [ruby-core:07389] * sample/rtags.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b070abfc20
commit
7bd38510a8
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
Sat Feb 18 23:58:26 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/tracer.rb (Tracer::Tracer.add_filter): turn on tracer mode
|
||||||
|
only when caller() level size is one. [ruby-core:07389]
|
||||||
|
|
||||||
|
* lib/rdoc/parsers/parse_rb.rb: need not to require "tracer".
|
||||||
|
[ruby-core:07389]
|
||||||
|
|
||||||
|
* sample/rtags.rb: ditto.
|
||||||
|
|
||||||
Sat Feb 18 21:16:27 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Sat Feb 18 21:16:27 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* eval.c (rb_obj_instance_eval): RDoc description updated. a
|
* eval.c (rb_obj_instance_eval): RDoc description updated. a
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# by Keiju ISHITSUKA (Nippon Rational Inc.)
|
# by Keiju ISHITSUKA (Nippon Rational Inc.)
|
||||||
#
|
#
|
||||||
|
|
||||||
require "tracer"
|
|
||||||
require "e2mmap"
|
require "e2mmap"
|
||||||
require "irb/slex"
|
require "irb/slex"
|
||||||
|
|
||||||
|
@ -162,6 +162,6 @@ if $0 == __FILE__
|
|||||||
ARGV.shift
|
ARGV.shift
|
||||||
Tracer.on
|
Tracer.on
|
||||||
require $0
|
require $0
|
||||||
else
|
elsif caller(0).size == 1
|
||||||
Tracer.on
|
Tracer.on
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user