install_siginfo_handler()
Installs a siginfo handler that prints the current filename.
# File lib/rdoc/generator/ri.rb, line 66 def install_siginfo_handler return unless Signal.list.key? 'INFO' @old_siginfo = trap 'INFO' do puts @current if @current end end