view src/readline-1-input.patch @ 6329:17e88be8f3ed

* src/opkg-mqtt.mk: update to v0.0.2
author John Donoghue <john.donoghue@ieee.org>
date Thu, 21 Jul 2022 13:22:40 -0400
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)