aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-11 19:23:28 +0000
committerRichard M. Stallman1996-09-11 19:23:28 +0000
commitaeb3e6326a6a21ac3372ff9cfca949ebef523a61 (patch)
tree60570a402f3c5505338e8b2d689830fe667648de
parent4d120e8cb32472a198f405eabf8bfb7ba559191f (diff)
downloademacs-aeb3e6326a6a21ac3372ff9cfca949ebef523a61.tar.gz
emacs-aeb3e6326a6a21ac3372ff9cfca949ebef523a61.zip
(Fload): Move ... to ends of messages.
-rw-r--r--src/lread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c
index 2272b81149e..772a91581a6 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -475,10 +475,10 @@ Return t if file exists.")
475 if (NILP (nomessage)) 475 if (NILP (nomessage))
476 { 476 {
477 if (newer) 477 if (newer)
478 message ("Loading %s... (compiled; note, source file is newer)", 478 message ("Loading %s (compiled; note, source file is newer)...",
479 XSTRING (file)->data); 479 XSTRING (file)->data);
480 else if (compiled) 480 else if (compiled)
481 message ("Loading %s... (compiled)", XSTRING (file)->data); 481 message ("Loading %s (compiled)...", XSTRING (file)->data);
482 else 482 else
483 message ("Loading %s...", XSTRING (file)->data); 483 message ("Loading %s...", XSTRING (file)->data);
484 } 484 }
@@ -510,10 +510,10 @@ Return t if file exists.")
510 if (!noninteractive && NILP (nomessage)) 510 if (!noninteractive && NILP (nomessage))
511 { 511 {
512 if (newer) 512 if (newer)
513 message ("Loading %s...done (compiled; note, source file is newer)", 513 message ("Loading %s (compiled; note, source file is newer)...done",
514 XSTRING (file)->data); 514 XSTRING (file)->data);
515 else if (compiled) 515 else if (compiled)
516 message ("Loading %s...done (compiled)", XSTRING (file)->data); 516 message ("Loading %s (compiled)...done", XSTRING (file)->data);
517 else 517 else
518 message ("Loading %s...done", XSTRING (file)->data); 518 message ("Loading %s...done", XSTRING (file)->data);
519 } 519 }