Would someone please fix this in the trunk, then ack?
------- Start of forwarded message -------
X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY
autolearn=failed version=3.1.0
From: address@hidden (Johan =?utf-8?Q?Bockg=C3=A5rd?=)
To: address@hidden
Date: Fri, 08 Jun 2007 16:43:46 +0200
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Subject: The `cl-functions' byte compiler warning doesn't work
The file names in `load-history' are absolute nowadays, but
bytecomp.el expects relative names:
(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)))
[...]
Also, there's a typo in the comment on line 101 of bytecomp.el.
"cl-warnings" should be "cl-functions".