view src/readline-1-input.patch @ 6213:5f64fb928091 release

build-gcc: Avoid library clash when calling msgfmt. * src/build-gcc-1-msgfmt.patch: Don't use libraries from the build tree when calling `msgfmt`. * dist-files.mk: Add patch to list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 06 May 2022 19:36:10 +0200
parents 41e50d658de0
children 5ef7d51c2195
line wrap: on
line source

diff -ur readline-8.1.1/input.c readline-8.1.2/input.c
--- readline-8.1.1/input.c	2020-12-19 07:54:06.883500144 -0500
+++ readline-8.1.2/input.c	2020-12-19 07:55:29.042995655 -0500
@@ -538,7 +538,12 @@
 
 #if defined (__MINGW32__)
       if (isatty (fileno (stream)))
-	return (_getch ());	/* "There is no error return." */
+        {
+          int c = _getch ();
+          if (c == 0xe0)
+            rl_execute_next (_getch ());
+          return (c);
+        }
 #endif
       result = 0;
 #if defined (HAVE_PSELECT)