aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispnew.c
diff options
context:
space:
mode:
authorKaroly Lorentey <[email protected]>2005-06-25 15:00:08 +0000
committerKaroly Lorentey <[email protected]>2005-06-25 15:00:08 +0000
commit0d0358be7e741898e363d02dbff01b35c662413c (patch)
treee6bdb6ae792a8be712780a5cfad4eeddb09c4f43 /src/dispnew.c
parentf4d9bf3a9be50a17c2e2f7569b88f3606ab273d9 (diff)
parentb93e3c3ba1644f5e746c7486bd609ba9fc7ec583 (diff)
Merged from [email protected] (patch 441-446)
Patches applied: * [email protected]/emacs--cvs-trunk--0--patch-441 Update reference to renamed Buffer-menu-buffer face * [email protected]/emacs--cvs-trunk--0--patch-442 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-443 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-444 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-445 Update from CVS * [email protected]/emacs--cvs-trunk--0--patch-446 Update from CVS git-archimport-id: [email protected]/emacs--multi-tty--0--patch-354
Diffstat (limited to 'src/dispnew.c')
-rw-r--r--src/dispnew.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index c525614258..cc9e6152d1 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -6374,7 +6374,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. */
@@ -6474,7 +6474,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));