From 861e19b931e3bd7b2bb169bac92b5c53ab07f839 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 23 Jun 2005 16:06:10 +0000 Subject: [PATCH] (Fsleep_for, Fsit_for): Follow error conventions. --- src/dispnew.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dispnew.c b/src/dispnew.c index 38e4daaaefc..f92c3f2c8f0 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -6348,7 +6348,7 @@ Emacs was built without floating point support. #ifndef EMACS_HAS_USECS if (sec == 0 && usec != 0) - error ("millisecond `sleep-for' not supported on %s", SYSTEM_TYPE); + error ("Millisecond `sleep-for' not supported on %s", SYSTEM_TYPE); #endif /* Assure that 0 <= usec < 1000000. */ @@ -6448,7 +6448,7 @@ usage: (sit-for SECONDS &optional NODISP OLD-NODISP) */) #ifndef EMACS_HAS_USECS if (usec != 0 && sec == 0) - error ("millisecond `sit-for' not supported on %s", SYSTEM_TYPE); + error ("Millisecond `sit-for' not supported on %s", SYSTEM_TYPE); #endif return sit_for (sec, usec, 0, NILP (nodisp), NILP (nodisp)); -- 2.39.2