From: Tom Tromey Date: Sat, 23 Jan 2021 16:04:43 +0000 (-0700) Subject: Use readline's variant of Windows patch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef45cb65a7be9f80686233d0e5586ced81613db0;p=binutils-gdb.git Use readline's variant of Windows patch A while back, Eli sent a patch to readline that was incorporated by upstream readline in a slightly different form. To cut down on divergences between GDB and upstream readline, I am checking in this patch to use the readline code. readline/readline/ChangeLog.gdb 2021-01-23 Tom Tromey * input.c [_WIN32]: Use code from upstream readline. --- diff --git a/readline/readline/ChangeLog.gdb b/readline/readline/ChangeLog.gdb index 0b3d1ab5d93..71161cbe027 100644 --- a/readline/readline/ChangeLog.gdb +++ b/readline/readline/ChangeLog.gdb @@ -1,3 +1,7 @@ +2021-01-23 Tom Tromey + + * input.c [_WIN32]: Use code from upstream readline. + 2019-10-23 Andrew Burgess PR cli/24980 diff --git a/readline/readline/input.c b/readline/readline/input.c index 95ace842ba2..d4d57a810a4 100644 --- a/readline/readline/input.c +++ b/readline/readline/input.c @@ -99,16 +99,16 @@ static int ibuffer_space PARAMS((void)); static int rl_get_char PARAMS((int *)); static int rl_gather_tyi PARAMS((void)); +/* Windows isatty returns true for every character device, including the null + device, so we need to perform additional checks. */ #if defined (_WIN32) && !defined (__CYGWIN__) - -/* 'isatty' in the Windows runtime returns non-zero for every - character device, including the null device. Repair that. */ #include #include #define WIN32_LEAN_AND_MEAN 1 #include -int w32_isatty (int fd) +int +win32_isatty (int fd) { if (_isatty(fd)) { @@ -127,7 +127,7 @@ int w32_isatty (int fd) return 0; } -#define isatty(x) w32_isatty(x) +#define isatty(x) win32_isatty(x) #endif /* **************************************************************** */