]> code.delx.au - gnu-emacs/commitdiff
(Fsleep_for, Fsit_for): Follow error conventions.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 23 Jun 2005 16:06:10 +0000 (16:06 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 23 Jun 2005 16:06:10 +0000 (16:06 +0000)
src/dispnew.c

index 38e4daaaefca0a6705f1bd713630745362ba40e3..f92c3f2c8f058105682577d11e1067a94d45ad60 100644 (file)
@@ -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));