From cde84a5baac7d854190d09a72bc8c4f40a6eb1ea Mon Sep 17 00:00:00 2001 From: aycabta Date: Sun, 29 Aug 2021 20:05:57 +0900 Subject: [ruby/irb] Rescue NotFoundError of RDoc::RI::Driver#expand_name https://github.com/ruby/irb/commit/c5f13b23d7 --- lib/irb/input-method.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/irb/input-method.rb') diff --git a/lib/irb/input-method.rb b/lib/irb/input-method.rb index 1e4132ca6f..4d55e4ef3d 100644 --- a/lib/irb/input-method.rb +++ b/lib/irb/input-method.rb @@ -323,7 +323,11 @@ module IRB name = result[pointer] driver = RDoc::RI::Driver.new - name = driver.expand_name(name) + begin + name = driver.expand_name(name) + rescue RDoc::RI::Driver::NotFoundError + return nil + end doc = nil used_for_class = false if not name =~ /#|\./ -- cgit v1.2.3