There's a bug in xsleep in mswindows.c:

--- src/mswindows.c.orig        2015-11-09 16:24:07.000000000 +0100
+++ src/mswindows.c     2016-04-25 12:29:49.291555801 +0200
@@ -63,7 +63,7 @@
 xsleep (double seconds)
 {
 #if defined(HAVE_USLEEP) && defined(HAVE_SLEEP)
-  if (seconds > 1000)
+  if (seconds >= 1)
     {
       /* Explained in utils.c. */
       sleep (seconds);


-- 
< Jernej Simončič ><><><><><><><><><><><>< https://eternallybored.org/ >

           Because 10 billion years' time is so fragile, so ephemeral...
it arouses such a bittersweet, almost heartbreaking fondness.


Reply via email to