diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-11 19:23:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-11 19:23:28 +0000 |
commit | aeb3e6326a6a21ac3372ff9cfca949ebef523a61 (patch) | |
tree | 60570a402f3c5505338e8b2d689830fe667648de | |
parent | 4d120e8cb32472a198f405eabf8bfb7ba559191f (diff) | |
download | emacs-aeb3e6326a6a21ac3372ff9cfca949ebef523a61.tar.gz |
(Fload): Move ... to ends of messages.
-rw-r--r-- | src/lread.c | 8 |
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); } |