Files
nethack/win
nhmall 42e337c306 return correct ALT-key sequences with PDCurses
They weren't working at all because the values of ALT_A through ALT_Z
were out of the normal char range with PDCurses, and caught by the default
case in the switch, where reject got set.

/* use key as-is unless it's out of normal char range */
        reject = ((uchar) ret < 1 || ret > 255);
2023-02-28 00:05:04 -05:00
..
2022-10-26 14:21:23 -04:00
2023-02-07 16:47:42 -08:00
2023-02-21 14:00:31 -08:00