summaryrefslogtreecommitdiff
path: root/src/dispnew.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-07-26 18:38:23 +0000
committerRichard M. Stallman <rms@gnu.org>1993-07-26 18:38:23 +0000
commit5810f68cfc12fe2eb24060309c430d9661e0d56d (patch)
treef832a4b393b6855367decd937a90b2d42e8c6327 /src/dispnew.c
parent30aa351ccb957cd75e8dd29e98b418a23bd4bd31 (diff)
downloademacs-5810f68cfc12fe2eb24060309c430d9661e0d56d.tar.gz
(Fsleep_for): If arg is 0, return right away.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r--src/dispnew.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 2351724a7be..42f5e6edde0 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -1872,7 +1872,7 @@ Emacs was built without floating point support.\n\
else
sec += usec / 1000000, usec %= 1000000;
- if (sec < 0)
+ if (sec <= 0)
return Qnil;
{