# HG changeset patch # User Richard M. Stallman # Date 842469808 0 # Node ID a95e975275d8f08133605b0cef5d61b97ce848a5 # Parent 33c5b9ccc216e25c27bec5a9b1f3133420892ade (Fload): Move ... to ends of messages. diff -r 33c5b9ccc216 -r a95e975275d8 src/lread.c --- a/src/lread.c Wed Sep 11 19:05:36 1996 +0000 +++ b/src/lread.c Wed Sep 11 19:23:28 1996 +0000 @@ -475,10 +475,10 @@ 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 @@ 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); }