From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Taylor Venable Newsgroups: gmane.emacs.devel Subject: Re: bootstrap failure: Invalid read syntax: ". in wrong context" in european.el Date: Mon, 2 Jun 2008 11:25:16 -0400 Message-ID: <20080602152514.GB483@metasyntax.net> References: <200806011822.m51IMgLP020349@sallyv1.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1212420416 1100 80.91.229.12 (2 Jun 2008 15:26:56 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 2 Jun 2008 15:26:56 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 02 17:27:28 2008 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 1K3Bvv-0007VN-Ip for ged-emacs-devel@m.gmane.org; Mon, 02 Jun 2008 17:26:51 +0200 Original-Received: from localhost ([127.0.0.1]:54402 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K3Bv9-0006H4-C8 for ged-emacs-devel@m.gmane.org; Mon, 02 Jun 2008 11:26:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K3Bv2-0006DY-RS for emacs-devel@gnu.org; Mon, 02 Jun 2008 11:25:57 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K3Bv1-0006BS-4E for emacs-devel@gnu.org; Mon, 02 Jun 2008 11:25:56 -0400 Original-Received: from [199.232.76.173] (port=38130 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K3Bv0-0006BG-W8 for emacs-devel@gnu.org; Mon, 02 Jun 2008 11:25:55 -0400 Original-Received: from mout.perfora.net ([74.208.4.194]:58993) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K3Bv1-0006DB-1e for emacs-devel@gnu.org; Mon, 02 Jun 2008 11:25:55 -0400 Original-Received: from metasyntax.net (75-149-208-122-Illinois.hfc.comcastbusiness.net [75.149.208.122]) by mrelay.perfora.net (node=mrus1) with ESMTP (Nemesis) id 0MKpCa-1K3Bul0xPK-0004PD; Mon, 02 Jun 2008 11:25:41 -0400 Content-Disposition: inline In-Reply-To: <200806011822.m51IMgLP020349@sallyv1.ics.uci.edu> User-Agent: Mutt/1.5.18 (2008-05-17) X-Provags-ID: V01U2FsdGVkX1/f9jot38qNjsKySERuj6reriJNUqZx4rwFNrH gDfkXtqgd9aWbIfA/6l2XSRZ8tQNGuidqaRx6tE4oaDGm/O8fr uSDGYgMVCA82WvQ78Zosw== X-detected-kernel: by monty-python.gnu.org: Linux 2.6? (barebone, rare!) 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:98237 Archived-At: On Sun, Jun 01, 2008 at 11:22:42AM -0700, Dan Nicolaescu wrote: > The error is: > > Loading /tmp/emacs/lisp/language/european.el (source)... > Invalid read syntax: ". in wrong context" > > Removing the "sample-text" line after: > ;; Fixme: Welsh/Ga{e}lic greetings > in european.el fixes it. The same error occurs when compiling AUCTeX under NetBSD 4.99.63 on AMD64 for the following s-expression in tex-jp.el (line 264): (if japanese-TeX-error-messages (setq TeX-error-description-list '(("Bad \\\\line or \\\\vector argument.*" . "^[$B@~$N79$-$r;XDj$9$k!$^[(B\\line^[$B$^$?$O^[(B\\vector^[$B$N:G=i$N0z?t$,IT@5$G$9!%^[(B") ...))) Emacs bootstrap worked fine with the CVS as of today (2008-06-02), just a little while ago (at least on this platform). -- Taylor Venable http://real.metasyntax.net:2357/ foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or [f(l[0], foldr(f, i, l[1:]))])[0]