summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-11 19:23:28 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-11 19:23:28 +0000
commitd27ceca6e8d77f35163f9f770ed23472a02fd7d3 (patch)
tree415a8af2bae16cb362b376525c4cb08aaaaebeee
parentd89501a9eeb7319abc394eb6de2ad02f0b1ae565 (diff)
downloademacs-d27ceca6e8d77f35163f9f770ed23472a02fd7d3.tar.gz
(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.")
if (NILP (nomessage))
{
if (newer)
- message ("Loading %s... (compiled; note, source file is newer)",
+ message ("Loading %s (compiled; note, source file is newer)...",
XSTRING (file)->data);
else if (compiled)
- message ("Loading %s... (compiled)", XSTRING (file)->data);
+ message ("Loading %s (compiled)...", XSTRING (file)->data);
else
message ("Loading %s...", XSTRING (file)->data);
}
@@ -510,10 +510,10 @@ Return t if file exists.")
if (!noninteractive && NILP (nomessage))
{
if (newer)
- message ("Loading %s...done (compiled; note, source file is newer)",
+ message ("Loading %s (compiled; note, source file is newer)...done",
XSTRING (file)->data);
else if (compiled)
- message ("Loading %s...done (compiled)", XSTRING (file)->data);
+ message ("Loading %s (compiled)...done", XSTRING (file)->data);
else
message ("Loading %s...done", XSTRING (file)->data);
}