aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-01-08 19:33:02 +0000
committerRichard M. Stallman2001-01-08 19:33:02 +0000
commit5afd1b9cc3f1664cc2c659666f06b6f1454358f7 (patch)
treecb896c7e3b4b20937bc86096cd5ada50c20c979f
parent984c9f75e34a839d272501f60d5dc30de6ef5e00 (diff)
downloademacs-5afd1b9cc3f1664cc2c659666f06b6f1454358f7.tar.gz
emacs-5afd1b9cc3f1664cc2c659666f06b6f1454358f7.zip
(byte-compile-log-1): In non-batch case, don't mention the file name
or the date here, because they are logged at the start of the file.
-rw-r--r--lisp/emacs-lisp/bytecomp.el24
1 files changed, 15 insertions, 9 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index fd42f6bcf97..6ade734984d 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -10,7 +10,7 @@
10 10
11;;; This version incorporates changes up to version 2.10 of the 11;;; This version incorporates changes up to version 2.10 of the
12;;; Zawinski-Furuseth compiler. 12;;; Zawinski-Furuseth compiler.
13(defconst byte-compile-version "$Revision: 2.80 $") 13(defconst byte-compile-version "$Revision: 2.81 $")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.
16 16
@@ -842,17 +842,23 @@ Each function's symbol gets marked with the `byte-compile-noruntime' property."
842 (and byte-compile-last-warned-form 842 (and byte-compile-last-warned-form
843 (not (eq byte-compile-current-form 843 (not (eq byte-compile-current-form
844 byte-compile-last-warned-form)))) 844 byte-compile-last-warned-form))))
845 (if byte-compile-current-file 845;;; This is redundant, since it is given at the start of the file,
846 (insert "\n\^L\n" (current-time-string) "\n")) 846;;; and the extra clutter gets in the way -- rms.
847 (insert "While compiling " 847;;; (if (and byte-compile-current-file
848;;; (not (equal byte-compile-current-file
849;;; byte-compile-last-logged-file)))
850;;; (insert "\n\^L\n" (current-time-string) "\n"))
851 (insert "\nWhile compiling "
848 (if byte-compile-current-form 852 (if byte-compile-current-form
849 (format "%s" byte-compile-current-form) 853 (format "%s" byte-compile-current-form)
850 "toplevel forms")) 854 "toplevel forms"))
851 (if byte-compile-current-file 855;;; This is redundant, since it is given at the start of the file,
852 (if (stringp byte-compile-current-file) 856;;; and the extra clutter gets in the way -- rms.
853 (insert " in file " byte-compile-current-file) 857;;; (if byte-compile-current-file
854 (insert " in buffer " 858;;; (if (stringp byte-compile-current-file)
855 (buffer-name byte-compile-current-file)))) 859;;; (insert " in file " byte-compile-current-file)
860;;; (insert " in buffer "
861;;; (buffer-name byte-compile-current-file))))
856 (insert ":\n"))) 862 (insert ":\n")))
857 (insert " " string "\n") 863 (insert " " string "\n")
858 (if (and fill (not (string-match "\n" string))) 864 (if (and fill (not (string-match "\n" string)))