Changes between Initial Version and Version 1 of Ticket #2244, comment 69


Ignore:
Timestamp:
12/25/15 17:49:27 (8 years ago)
Author:
and
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2244, comment 69

    initial v1  
    88but under ncurses getch() error condition check is complicated. 
    99 
    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. 
     10ncurses getch() can return ERR which is an error on delay mode, but not strictly on no-delay mode.  
     11So 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) 
    1112 
    12 patch will handled getch() error in delay mode. 
     13patch will handled ncurces getch() error in delay mode which solve looping on exit.