Changes between Initial Version and Version 1 of Ticket #2244, comment 69
- Timestamp:
- 12/25/15 17:49:27 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2244, comment 69
initial v1 8 8 but under ncurses getch() error condition check is complicated. 9 9 10 ncurses getch() can return ERR which is an error on delay mode, but not strictly on no-delay mode. So stdin EOF will never signaled by ncurses getch() in no-delay mode. 10 ncurses getch() can return ERR which is an error on delay mode, but not strictly on no-delay mode. 11 So stdin EOF may never signaled by ncurses getch() in no-delay mode (I have no testcase for testing ncurses in nodelay mode if getch() returning ERR _and_ an errno state) 11 12 12 patch will handled getch() error in delay mode.13 patch will handled ncurces getch() error in delay mode which solve looping on exit.