Skip to content

Commit

Permalink
On Windows, make "waiting for data" message indicate that ^X can inte…
Browse files Browse the repository at this point in the history
…rrupt.
  • Loading branch information
gwsw committed Sep 24, 2023
1 parent d5ede93 commit 735f099
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions os.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,15 @@ static int check_poll(int fd, int tty)

public int supports_ctrl_x(void)
{
#if MSDOS_COMPILER==WIN32C
return (TRUE);
#else
#if USE_POLL
return (use_poll);
#else
return (FALSE);
#endif /* USE_POLL */
#endif /* MSDOS_COMPILER==WIN32C */
}

/*
Expand Down

0 comments on commit 735f099

Please sign in to comment.