changeset 10687:1bd70186f894

(byte-compile-file-form-defmumble, display-call-tree): Print ellipsis earlier, so message logging will fold similar strings.
author Karl Heuer <kwzh@gnu.org>
date Wed, 08 Feb 1995 00:43:45 +0000
parents 535aea7d22a3
children 340ceb6ae024
files lisp/emacs-lisp/bytecomp.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el	Tue Feb 07 23:56:47 1995 +0000
+++ b/lisp/emacs-lisp/bytecomp.el	Wed Feb 08 00:43:45 1995 +0000
@@ -1598,7 +1598,7 @@
     (if (memq 'redefine byte-compile-warnings)
 	(byte-compile-arglist-warn form macrop))
     (if byte-compile-verbose
-	(message "Compiling %s (%s)..." (or filename "") (nth 1 form)))
+	(message "Compiling %s... (%s)" (or filename "") (nth 1 form)))
     (cond (that-one
 	   (if (and (memq 'redefine byte-compile-warnings)
 		    ;; don't warn when compiling the stubs in byte-run...
@@ -3032,7 +3032,7 @@
   (with-output-to-temp-buffer "*Call-Tree*"
     (set-buffer "*Call-Tree*")
     (erase-buffer)
-    (message "Generating call tree (sorting on %s)..."
+    (message "Generating call tree... (sorting on %s)"
 	     byte-compile-call-tree-sort)
     (insert "Call tree for "
 	    (cond ((null byte-compile-current-file) (or filename "???"))