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/byte-opt.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/byte-opt.el
Date: Thu, 11 Nov 2004 23:05:32 -0500

Index: emacs/lisp/emacs-lisp/byte-opt.el
diff -c emacs/lisp/emacs-lisp/byte-opt.el:1.76 
emacs/lisp/emacs-lisp/byte-opt.el:1.77
*** emacs/lisp/emacs-lisp/byte-opt.el:1.76      Sun Oct 10 14:28:19 2004
--- emacs/lisp/emacs-lisp/byte-opt.el   Fri Nov 12 03:59:26 2004
***************
*** 1,6 ****
  ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler
  
! ;; Copyright (c) 1991,1994,2000,01,02,2004  Free Software Foundation, Inc.
  
  ;; Author: Jamie Zawinski <address@hidden>
  ;;    Hallvard Furuseth <address@hidden>
--- 1,7 ----
  ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler
  
! ;; Copyright (c) 1991, 1994, 2000, 2001, 2002, 2004
! ;;           Free Software Foundation, Inc.
  
  ;; Author: Jamie Zawinski <address@hidden>
  ;;    Hallvard Furuseth <address@hidden>
***************
*** 266,272 ****
                     (cdr (assq name byte-compile-function-environment)))))
        (if (and (consp fn) (eq (car fn) 'autoload))
          (error "File `%s' didn't define `%s'" (nth 1 fn) name))
!       (if (symbolp fn)
          (byte-compile-inline-expand (cons fn (cdr form)))
        (if (byte-code-function-p fn)
            (let (string)
--- 267,273 ----
                     (cdr (assq name byte-compile-function-environment)))))
        (if (and (consp fn) (eq (car fn) 'autoload))
          (error "File `%s' didn't define `%s'" (nth 1 fn) name))
!       (if (and (symbolp fn) (not (eq fn t)))
          (byte-compile-inline-expand (cons fn (cdr form)))
        (if (byte-code-function-p fn)
            (let (string)
***************
*** 2032,2036 ****
                 byte-optimize-lapcode))))
   nil)
  
! ;;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1
  ;;; byte-opt.el ends here
--- 2033,2037 ----
                 byte-optimize-lapcode))))
   nil)
  
! ;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1
  ;;; byte-opt.el ends here




reply via email to

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