##// END OF EJS Templates
Avoid lockups with ? or ?? in SunOS, due to a bug in termios....
Fernando Perez -
Show More
@@ -1655,7 +1655,7 b' def page(strng,start=0,screen_lines=0,pager_cmd = None):'
1655 1655
1656 1656 # auto-determine screen size
1657 1657 if screen_lines <= 0:
1658 if TERM=='xterm':
1658 if (TERM=='xterm' or TERM=='xterm-color') and sys.platform != 'sunos5':
1659 1659 use_curses = USE_CURSES
1660 1660 else:
1661 1661 # curses causes problems on many terminals other than xterm.
General Comments 0
You need to be logged in to leave comments. Login now