Mercurial > emacs
changeset 63695:98563021d2e3
(Fsleep_for, Fsit_for): Follow error conventions.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 23 Jun 2005 16:06:10 +0000 |
parents | 8f10ba0f0a86 |
children | 43b9742ef102 |
files | src/dispnew.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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));