view src/readline-1-input.patch @ 4036:e5c0805d9f5f

gdcm: update to 2.4.6, patch of-dicom to work with 2.4.X * src/gdcm.mk: update version ,checksum * src/of-dicom-2-gdcm2.4.patch: new file * dist-files.mk: add of-dicom-2-gdcm2.4.patch
author John D
date Sun, 27 Sep 2015 15:44:30 -0400
parents 2cf09b449d88
children
line wrap: on
line source

diff -uNr a/input.c b/input.c
--- a/input.c	2010-05-30 18:33:01.000000000 -0400
+++ b/input.c	2013-04-17 23:50:34.759675631 -0400
@@ -466,7 +466,12 @@
 
 #if defined (__MINGW32__)
       if (isatty (fileno (stream)))
-	return (getch ());
+        {
+          int c = _getch ();
+          if (c == 0xe0)
+            rl_execute_next (_getch ());
+          return (c);
+        }
 #endif
       result = read (fileno (stream), &c, sizeof (unsigned char));