From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: nmake recompile failes - 21.3 Date: Fri, 14 Feb 2003 13:49:46 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20030214134055.66A6.LEKTU@terra.es> References: <20030214110310.6699.LEKTU@terra.es> <20030214115429.04DC448665@server2.fastmail.fm> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1045226951 31605 80.91.224.249 (14 Feb 2003 12:49:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 14 Feb 2003 12:49:11 +0000 (UTC) Cc: Emacs Devel Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18jfH4-0008DL-00 for ; Fri, 14 Feb 2003 13:49:02 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18jfU0-00016g-00 for ; Fri, 14 Feb 2003 14:02:24 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18jfIJ-0002nI-08 for emacs-devel@quimby.gnus.org; Fri, 14 Feb 2003 07:50:19 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18jfHw-0002eK-00 for emacs-devel@gnu.org; Fri, 14 Feb 2003 07:49:56 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18jfHv-0002dt-00 for emacs-devel@gnu.org; Fri, 14 Feb 2003 07:49:55 -0500 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18jfHs-0002Oq-00; Fri, 14 Feb 2003 07:49:52 -0500 Original-Received: from [62.22.27.143] (jbarranquero.ofi.peoplecall.com [62.22.27.143]) by mail.peoplecall.com (8.11.6/8.11.6) with ESMTP id h1ECnjm28184; Fri, 14 Feb 2003 13:49:46 +0100 Original-To: "Dhruva Krishnamurthy" In-Reply-To: <20030214115429.04DC448665@server2.fastmail.fm> X-Mailer: Becky! ver. 2.05.09 Original-cc: Emacs Bug X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:11641 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:11641 On Fri, 14 Feb 2003 17:24:28 +0530, "Dhruva Krishnamurthy" wrote: > Does not help. > I see your current promotion has removed the problem "?\s" escape char. > It builds fine now. Thanks. I don't understand. AFAICS, you were getting an error with recompile because two elisp modules use now the new ?\s syntax (which is safer than protecting the space with a comment, as previously done), and you hadn't compiled the new lread.c. Building or bootstrapping should fix it. I didn't remove the two ?\s introduced in ruler-mode.el and international/characters.el. They're still there. Additionally, the following change: (read1): Signal an `invalid read syntax' error if a character constant is immediately followed by a digit or symbol character. has uncovered ill-formated constant characters in some modules. Those are fixed now, too. /L/e/k/t/u