# HG changeset patch # User Juanma Barranquero # Date 1119542770 0 # Node ID 98563021d2e3cb6a77e0a5ea0e539508458dbe10 # Parent 8f10ba0f0a86f4bf9523454336909a7d0ce66873 (Fsleep_for, Fsit_for): Follow error conventions. diff -r 8f10ba0f0a86 -r 98563021d2e3 src/dispnew.c --- a/src/dispnew.c Thu Jun 23 16:05:15 2005 +0000 +++ b/src/dispnew.c Thu Jun 23 16:06:10 2005 +0000 @@ -6348,7 +6348,7 @@ #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 @@ #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));