emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el
Date: Thu, 29 Aug 2002 10:49:49 -0400

Index: emacs/lisp/emacs-lisp/bytecomp.el
diff -c emacs/lisp/emacs-lisp/bytecomp.el:2.109 
emacs/lisp/emacs-lisp/bytecomp.el:2.110
*** emacs/lisp/emacs-lisp/bytecomp.el:2.109     Wed Jul 31 18:04:33 2002
--- emacs/lisp/emacs-lisp/bytecomp.el   Thu Aug 29 10:49:48 2002
***************
*** 10,16 ****
  
  ;;; This version incorporates changes up to version 2.10 of the
  ;;; Zawinski-Furuseth compiler.
! (defconst byte-compile-version "$Revision: 2.109 $")
  
  ;; This file is part of GNU Emacs.
  
--- 10,16 ----
  
  ;;; This version incorporates changes up to version 2.10 of the
  ;;; Zawinski-Furuseth compiler.
! (defconst byte-compile-version "$Revision: 2.110 $")
  
  ;; This file is part of GNU Emacs.
  
***************
*** 943,949 ****
         (goto-char (point-max))
         (insert "\n")
         (let ((pt (point)))
!          (insert "^L\nCompiling "
                   (if (stringp byte-compile-current-file)
                       (concat "file " byte-compile-current-file)
                     (concat "buffer " (buffer-name byte-compile-current-file)))
--- 943,949 ----
         (goto-char (point-max))
         (insert "\n")
         (let ((pt (point)))
!          (insert "\f\nCompiling "
                   (if (stringp byte-compile-current-file)
                       (concat "file " byte-compile-current-file)
                     (concat "buffer " (buffer-name byte-compile-current-file)))
***************
*** 1230,1239 ****
                        '(cl-block-wrapper cl-block-throw
                          multiple-value-call nth-value
                          copy-seq first second rest endp cl-member
!                         ;; This is sometimes defined in CL
!                         ;; but that redefines a standard function,
!                         ;; so don't warn about it.
!                         macroexpand))))
        (byte-compile-warn "Function `%s' from cl package called at runtime"
                           func)))
    form)
--- 1230,1239 ----
                        '(cl-block-wrapper cl-block-throw
                          multiple-value-call nth-value
                          copy-seq first second rest endp cl-member
!                         ;; These would sometimes be warned about
!                         ;; but such warnings are never useful,
!                         ;; so don't warn about them.
!                         macroexpand cl-macroexpand-all cl-compiling-file))))
        (byte-compile-warn "Function `%s' from cl package called at runtime"
                           func)))
    form)
***************
*** 1328,1333 ****
--- 1328,1340 ----
                                         byte-compile-warnings))
                )
              body)))
+ 
+ ;;;      ;; Log the file name.
+ ;;;      (let ((tem (byte-compile-log-file)))
+ ;;;        ;; Record position of that text,
+ ;;;        ;; unless we're compiling multiple files and this isn't the first.
+ ;;;        (unless warning-series
+ ;;;    (setq warning-series tem)))
  
  (defmacro displaying-byte-compile-warnings (&rest body)
    `(let (warning-series)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]