[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el |
Date: |
Sun, 18 Aug 2002 11:59:05 -0400 |
Index: emacs/lisp/emacs-lisp/bytecomp.el
diff -c emacs/lisp/emacs-lisp/bytecomp.el:2.108
emacs/lisp/emacs-lisp/bytecomp.el:2.109
*** emacs/lisp/emacs-lisp/bytecomp.el:2.108 Thu Jul 25 14:18:10 2002
--- emacs/lisp/emacs-lisp/bytecomp.el Wed Jul 31 18:04:33 2002
***************
*** 10,16 ****
;;; This version incorporates changes up to version 2.10 of the
;;; Zawinski-Furuseth compiler.
! (defconst byte-compile-version "$Revision: 2.108 $")
;; 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.109 $")
;; This file is part of GNU Emacs.
***************
*** 1206,1212 ****
(defun byte-compile-find-cl-functions ()
(unless byte-compile-cl-functions
(dolist (elt load-history)
! (when (string-match "^cl\\>" (car elt))
(setq byte-compile-cl-functions
(append byte-compile-cl-functions
(cdr elt)))))
--- 1206,1213 ----
(defun byte-compile-find-cl-functions ()
(unless byte-compile-cl-functions
(dolist (elt load-history)
! (when (and (stringp (car elt))
! (string-match "^cl\\>" (car elt)))
(setq byte-compile-cl-functions
(append byte-compile-cl-functions
(cdr elt)))))
- [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el, Miles Bader, 2002/08/17
- [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el,
Miles Bader <=
- [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el, Miles Bader, 2002/08/25
- [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el, Miles Bader, 2002/08/25
- [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el, Miles Bader, 2002/08/26
- [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el, Richard M. Stallman, 2002/08/29
- [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/bytecomp.el, Richard M. Stallman, 2002/08/29