summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-02-08 00:43:45 +0000
committerKarl Heuer <kwzh@gnu.org>1995-02-08 00:43:45 +0000
commit47cf9d3a96eb8290087971ef52b813f80e4df1e7 (patch)
tree0f607239dc14de8d04e0e80e02042ff68f9c25cb /lisp/emacs-lisp
parent3ff8ce93658ccf46baf3378b85ea34a1315aa6ab (diff)
downloademacs-47cf9d3a96eb8290087971ef52b813f80e4df1e7.tar.gz
emacs-47cf9d3a96eb8290087971ef52b813f80e4df1e7.tar.bz2
emacs-47cf9d3a96eb8290087971ef52b813f80e4df1e7.zip
(byte-compile-file-form-defmumble, display-call-tree): Print ellipsis earlier,
so message logging will fold similar strings.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 54776e1810c..45d2b9ff726 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -1598,7 +1598,7 @@ With argument, insert value in current buffer after the form."
(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 @@ invoked interactively."
(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 "???"))