fix dos cross-compile

This commit is contained in:
nhmall
2023-06-06 18:42:27 -04:00
parent 6ade366928
commit b21ef624eb
2 changed files with 5 additions and 4 deletions

View File

@@ -857,7 +857,7 @@ int
curses_convert_keys(int key)
{
boolean reject = (gp.program_state.input_state == otherInp),
as_is = FALSE, numpad_esc;
as_is = FALSE, numpad_esc = FALSE;
int ret = key;
if (modifiers_available)
@@ -1106,6 +1106,7 @@ parse_escape_sequence(boolean *keypadnum)
return ret;
#else
nhUse(keypadnum);
return '\033';
#endif /* !PDCURSES */
}