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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/byte-opt.el [lexbind]
Date: Wed, 08 Dec 2004 18:48:51 -0500

Index: emacs/lisp/emacs-lisp/byte-opt.el
diff -c emacs/lisp/emacs-lisp/byte-opt.el:1.64.2.12 
emacs/lisp/emacs-lisp/byte-opt.el:1.64.2.13
*** emacs/lisp/emacs-lisp/byte-opt.el:1.64.2.12 Mon Oct 25 04:19:40 2004
--- emacs/lisp/emacs-lisp/byte-opt.el   Wed Dec  8 23:30:14 2004
***************
*** 1,6 ****
  ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler
  
! ;; Copyright (c) 1991,1994,2000,01,02,03,04  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, 2003, 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)
***************
*** 2207,2211 ****
                 byte-optimize-lapcode))))
   nil)
  
! ;;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1
  ;;; byte-opt.el ends here
--- 2208,2212 ----
                 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]