From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alan Mackenzie Newsgroups: gmane.emacs.devel Subject: update Hades Date: Sat, 6 Oct 2007 14:20:36 +0000 Message-ID: <20071006142036.GA2082@muc.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1191680182 2483 80.91.229.12 (6 Oct 2007 14:16:22 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 6 Oct 2007 14:16:22 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 06 16:16:19 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IeAS2-00083E-0s for ged-emacs-devel@m.gmane.org; Sat, 06 Oct 2007 16:16:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IeARw-0004xP-O9 for ged-emacs-devel@m.gmane.org; Sat, 06 Oct 2007 10:16:12 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IeARt-0004wN-Rq for emacs-devel@gnu.org; Sat, 06 Oct 2007 10:16:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IeARt-0004vS-9o for emacs-devel@gnu.org; Sat, 06 Oct 2007 10:16:09 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IeARt-0004vK-36 for emacs-devel@gnu.org; Sat, 06 Oct 2007 10:16:09 -0400 Original-Received: from colin.muc.de ([193.149.48.1] helo=mail.muc.de) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IeARs-00075a-J5 for emacs-devel@gnu.org; Sat, 06 Oct 2007 10:16:08 -0400 Original-Received: (qmail 70528 invoked by uid 3782); 6 Oct 2007 14:16:06 -0000 Original-Received: from acm.muc.de (p57B1D6FE.dip.t-dialin.net [87.177.214.254]) by colin2.muc.de (tmda-ofmipd) with ESMTP; Sat, 06 Oct 2007 16:16:04 +0200 Original-Received: (qmail 22962 invoked by uid 1000); 6 Oct 2007 14:20:36 -0000 Content-Disposition: inline User-Agent: Mutt/1.5.9i X-Delivery-Agent: TMDA/1.1.5 (Fettercairn) X-Primary-Address: acm@muc.de X-Detected-Kernel: FreeBSD 4.6-4.9 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: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:80332 Archived-At: Hi, Emacs! I've just done a update on the CVS trunk. It doesn't build, though I've tried many things to get it going: I tried the usual INSTALL.CVS recipe: ./configure; make; cd lisp; make recompile EMACS=../src/emacs; cd ..; make (i) I had to download the new ../doc directory in. No complaints about this. But for anybody else who needs to do this, the recipe is "cvs update -d". (ii) It worked up until "make recompile EMACS=../srce/emacs". This failed for the lack of (defmacro with-demoted-errors). I solved this by rebytecompiling subr.el by hand. I think the bug here is that "make recompile" doesn't first recompile the "critical"[*] files first and then load them. Our ..../lisp/Makefile doesn't reflect the dependencies in our files.el. After hand-compiling subr.el, "make recompile ..." worked. [*] Not sure which files count as "critical", but subr.el is certainly amongst them. Probably simple.el, too. (iii) cd ..; make. This fails just after dumping the emacs executable, giving these messages: Dumping under names emacs and emacs-23.0.50.6 1153925 pure bytes used ./emacs -q -batch -f list-load-path-shadows Symbol's function definition is void: encoded-kbd-setup-display (defun encoded-kbd-setup-display...) is in ..../lisp/international/encoded-kb.el. I've byte compiled this by hand, but this doesn't help. Should encoded-kb.el perhaps be in loadup.el? Or do we need an autoload? Anybody got a quick workaround for this encoded-kbd-setup-display problem? -- Alan Mackenzie (Ittersbach, Germany).