From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Paul Pogonyshev Newsgroups: gmane.emacs.devel Subject: Weird build problem Date: Sat, 11 Sep 2004 02:24:32 -0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <200409110224.32213.pogonyshev@gmx.net> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1094858647 7553 80.91.224.253 (10 Sep 2004 23:24:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 10 Sep 2004 23:24:07 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 11 01:23:56 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C5ukF-0006jf-00 for ; Sat, 11 Sep 2004 01:23:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C5upe-0006EK-Dk for ged-emacs-devel@m.gmane.org; Fri, 10 Sep 2004 19:29:30 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C5upH-0006D8-Cw for emacs-devel@gnu.org; Fri, 10 Sep 2004 19:29:07 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C5upF-0006C0-LR for emacs-devel@gnu.org; Fri, 10 Sep 2004 19:29:06 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C5upF-0006Bp-Ic for emacs-devel@gnu.org; Fri, 10 Sep 2004 19:29:05 -0400 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.34) id 1C5ujX-0006Xk-Al for emacs-devel@gnu.org; Fri, 10 Sep 2004 19:23:11 -0400 Original-Received: (qmail 2591 invoked by uid 65534); 10 Sep 2004 23:22:58 -0000 Original-Received: from unknown (EHLO localhost.localdomain) (195.50.12.119) by mail.gmx.net (mp005) with SMTP; 11 Sep 2004 01:22:58 +0200 X-Authenticated: #16844820 Original-To: emacs-devel@gnu.org User-Agent: KMail/1.4.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:26991 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:26991 Hi. I stumble into this problem when building Emacs (when `bootstrap-emacs' is run for the first time from `lisp/'): =09Cannot open load file: cl-macs I think I tracked it down. This (might) be because the loop that adds subdirectories to load path uses `dolist' macro, which is defined in `cl-macs.el', which (at the time the loop is evaluated) is not in the load path. Phew... ;) Here is the code that (might) be the cause of the problem (in `lisp/startup.el', `normal-top-level'): ;; Look in each dir in load-path for a subdirs.el file. ;; If we find one, load it, which will add the appropriate subdirs ;; of that dir into load-path, ;; Look for a leim-list.el file too. Loading it will register ;; available input methods. (dolist (dir load-path) (let ((default-directory dir)) =09(load (expand-file-name "subdirs.el") t t t)) (let ((default-directory dir)) =09(load (expand-file-name "leim-list.el") t t t))) Paul