diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-23 16:06:10 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-23 16:06:10 +0000 |
commit | 861e19b931e3bd7b2bb169bac92b5c53ab07f839 (patch) | |
tree | 22c3d4f878177a641ac75cbae3d59a22bcd10630 /src/dispnew.c | |
parent | 95030461c98673b2c61a78249d64ec6dcc3a6f04 (diff) | |
download | emacs-861e19b931e3bd7b2bb169bac92b5c53ab07f839.tar.gz |
(Fsleep_for, Fsit_for): Follow error conventions.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r-- | src/dispnew.c | 4 |
1 files 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)); |