This project is closed and read-only.
Actions
Bug #677
closedLoadError bug in irb/init.rb
Bug #677:
LoadError bug in irb/init.rb
Description
=begin
There's a plain rescue that should explicitly check for LoadError in irb/init.rb, since LoadError is not a subclass of StandardError:
--- init.orig Mon Feb 12 16:01:20 2007
+++ init.rb Wed Oct 22 09:40:25 2008
@@ -250,7 +250,7 @@
for m in @CONF[:LOAD_MODULES]
begin
require m
- end
This solved a problem I had on a Windows box where I didn't have readline installed but was trying to use irb.
Regards,
Dan
=end
Updated by shyouhei (Shyouhei Urabe) over 17 years ago
- Assignee set to keiju (Keiju Ishitsuka)
=begin
=end
Updated by keiju (Keiju Ishitsuka) about 17 years ago
- Status changed from Open to Closed
- ruby -v set to 1.9
=begin
すでにだれかが直していました。
=end
Actions