Modified: MacRuby/trunk/lib/rdoc/ri/driver.rb (2943 => 2944)
--- MacRuby/trunk/lib/rdoc/ri/driver.rb 2009-11-03 02:36:34 UTC (rev 2943)
+++ MacRuby/trunk/lib/rdoc/ri/driver.rb 2009-11-03 02:38:22 UTC (rev 2944)
@@ -82,7 +82,9 @@
def self.default_options
options = {}
- options[:use_stdout] = !$stdout.tty?
+ # XXX Because of a bug in IO.popen, MacRuby is unable to use the pager facility.
+ #options[:use_stdout] = !$stdout.tty?
+ options[:use_stdout] = true
options[:width] = 72
options[:formatter] = RDoc::RI::Formatter.for 'plain'
options[:interactive] = false