mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/irb.rb (IRB::Irb::eval_input): SyntaxError should not be
considered as IRB bug. [ruby-dev:33991] * lib/irb/workspace.rb (IRB::WorkSpace::filter_backtrace): should filter 'irb.rb' as well for context mode 2 and 3. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a110ef359a
commit
772c19298d
3 changed files with 13 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Tue Mar 4 21:35:59 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/irb.rb (IRB::Irb::eval_input): SyntaxError should not be
|
||||||
|
considered as IRB bug. [ruby-dev:33991]
|
||||||
|
|
||||||
|
* lib/irb/workspace.rb (IRB::WorkSpace::filter_backtrace): should
|
||||||
|
filter 'irb.rb' as well for context mode 2 and 3.
|
||||||
|
|
||||||
Tue Mar 4 19:10:43 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Mar 4 19:10:43 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* hash.c (rb_hash_aset): should not copy key string when
|
* hash.c (rb_hash_aset): should not copy key string when
|
||||||
|
|
|
@ -156,12 +156,13 @@ module IRB
|
||||||
end
|
end
|
||||||
if exc
|
if exc
|
||||||
print exc.class, ": ", exc, "\n"
|
print exc.class, ": ", exc, "\n"
|
||||||
if exc.backtrace[0] =~ /irb(2)?(\/.*|-.*|\.rb)?:/ && exc.class.to_s !~ /^IRB/
|
if exc.backtrace[0] =~ /irb(2)?(\/.*|-.*|\.rb)?:/ && exc.class.to_s !~ /^IRB/ &&
|
||||||
|
!(SyntaxError === exc)
|
||||||
irb_bug = true
|
irb_bug = true
|
||||||
else
|
else
|
||||||
irb_bug = false
|
irb_bug = false
|
||||||
end
|
end
|
||||||
|
|
||||||
messages = []
|
messages = []
|
||||||
lasts = []
|
lasts = []
|
||||||
levels = 0
|
levels = 0
|
||||||
|
|
|
@ -93,8 +93,10 @@ EOF
|
||||||
end
|
end
|
||||||
when 2
|
when 2
|
||||||
return nil if bt =~ /irb\/.*\.rb/
|
return nil if bt =~ /irb\/.*\.rb/
|
||||||
|
return nil if bt =~ /irb\.rb/
|
||||||
when 3
|
when 3
|
||||||
return nil if bt =~ /irb\/.*\.rb/
|
return nil if bt =~ /irb\/.*\.rb/
|
||||||
|
return nil if bt =~ /irb\.rb/
|
||||||
bt.sub!(/:\s*in `irb_binding'/, '')
|
bt.sub!(/:\s*in `irb_binding'/, '')
|
||||||
end
|
end
|
||||||
bt
|
bt
|
||||||
|
|
Loading…
Add table
Reference in a new issue