]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-compile-find-cl-functions):
authorRichard M. Stallman <rms@gnu.org>
Wed, 31 Jul 2002 22:05:16 +0000 (22:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 31 Jul 2002 22:05:16 +0000 (22:05 +0000)
Check that (car elt) is a string.

lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el

index bed25b3194dfe21c202bc00e7dccb37f6ad99370..553da0faa224f06c45ddffe5d057a5af0cee46f0 100644 (file)
@@ -1,3 +1,12 @@
+2002-07-31  Richard M. Stallman  <rms@gnu.org>
+
+       * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
+       Check that (car elt) is a string.
+
+       * pcomplete.el (pcomplete-entries): Doc fix.
+
+       * international/mule.el (non-standard-icccm-encodings-alist): Doc fix.
+
 2002-07-31  Andreas Schwab  <schwab@suse.de>
 
        * dired.el: Hide disabling of dired-find-alternate-file behind
 
 2002-07-29  Richard M. Stallman  <rms@gnu.org>
 
+       * bindings.el (help-echo): If global-mode-string is non-nil,
+       display some spaces after it.
+
+       * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
+       Don't call string-match on non-string.
+       (displaying-byte-compile-warnings): 
+
        * textmodes/ispell.el (check-ispell-version): Bind default-directory
        to avoid errors.  Kill the old temp buffer at the beginning.
 
index 936f9fec5cfc70f750bf205f0655a1f8c5d9c02b..b70a79971b3eb586a77eb8978cda0e583186dd38 100644 (file)
@@ -10,7 +10,7 @@
 
 ;;; This version incorporates changes up to version 2.10 of the
 ;;; Zawinski-Furuseth compiler.
-(defconst byte-compile-version "$Revision: 2.107 $")
+(defconst byte-compile-version "$Revision: 2.108 $")
 
 ;; This file is part of GNU Emacs.
 
@@ -1206,7 +1206,8 @@ Each function's symbol gets marked with the `byte-compile-noruntime' property."
 (defun byte-compile-find-cl-functions ()
   (unless byte-compile-cl-functions
     (dolist (elt load-history)
-      (when (string-match "^cl\\>" (car elt))
+      (when (and (stringp (car elt))
+                (string-match "^cl\\>" (car elt)))
        (setq byte-compile-cl-functions
              (append byte-compile-cl-functions
                      (cdr elt)))))