From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Francesco Potorti` Newsgroups: gmane.emacs.devel Subject: Re: How is the 21.2.90 pretest going? Date: Tue, 08 Oct 2002 10:18:31 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: References: <15724.59040.131183.942957@mosaics.wustl.edu> <7458-Wed28Aug2002185639+0300-eliz@is.elta.co.il> <7458-Wed28Aug2002201929+0300-eliz@is.elta.co.il> <3405-Fri30Aug2002211052+0300-eliz@is.elta.co.il> <8011-Sat31Aug2002090148+0300-eliz@is.elta.co.il> <3791-Wed02Oct2002233515+0200-eliz@is.elta.co.il> NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1034065292 10633 127.0.0.1 (8 Oct 2002 08:21:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 8 Oct 2002 08:21:32 +0000 (UTC) Cc: Emacs developers Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17ypcR-0002lN-00 for ; Tue, 08 Oct 2002 10:21:31 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17yqPu-0008Kq-00 for ; Tue, 08 Oct 2002 11:12:38 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17ypc8-000263-00; Tue, 08 Oct 2002 04:21:12 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17ypbC-0001IB-00 for emacs-devel@gnu.org; Tue, 08 Oct 2002 04:20:14 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17ypb8-0001HE-00 for emacs-devel@gnu.org; Tue, 08 Oct 2002 04:20:13 -0400 Original-Received: from pot.cnuce.cnr.it ([146.48.83.182]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17ypZf-00013w-00 for emacs-devel@gnu.org; Tue, 08 Oct 2002 04:18:39 -0400 Original-Received: from pot by pot.cnuce.cnr.it with local (Exim 3.36 #1 (Debian)) id 17ypZX-0000KQ-00; Tue, 08 Oct 2002 10:18:31 +0200 Original-To: Eli Zaretskii In-reply-to: <3791-Wed02Oct2002233515+0200-eliz@is.elta.co.il> X-fingerprint: 4B2 6187 5C3 D6B1 2E31 7666 9DF 2DC9 BE21 6115 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:8461 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:8461 While creating a pretest, at dump time I get an error, because lib-src/fns-VERSION.el is required before it is created. I am investigating the problem, and this is a partial report, done so that people more knowledgeable than me may recognise the error before I do. During loadup, this form fails: (load "international/ucs-tables") The apparent reason is the use in ucs-tables of define-minor-mode, which requires easy-mmode. So I added: (load "emacs-lisp/easy-mmode") in loadup.el, before loading ucs-tables, but I still get a message saying that it cannot load fns-VERSION.el. I suspect that it needs yet another file which I should load before easy-mmode. I do not know if this is the correct way of proceeding, just letting you know what's going on while I'm working on it.