changeset 4290:885452da2a8f

(Fsleep_for): If arg is 0, return right away.
author Richard M. Stallman <rms@gnu.org>
date Mon, 26 Jul 1993 18:38:23 +0000
parents 4d0c57f01eed
children de0f38da99f5
files src/dispnew.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/dispnew.c	Mon Jul 26 18:32:07 1993 +0000
+++ b/src/dispnew.c	Mon Jul 26 18:38:23 1993 +0000
@@ -1872,7 +1872,7 @@
   else
     sec += usec / 1000000, usec %= 1000000;
 
-  if (sec < 0)
+  if (sec <= 0)
     return Qnil;
 
   {