view src/readline-1-input.patch @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +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)