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: New space char syntax Date: Fri, 14 Feb 2003 18:35:53 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20030214183145.66AF.LEKTU@terra.es> References: <84u1f6zu57.fsf@lucy.is.informatik.uni-duisburg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1045244174 7772 80.91.224.249 (14 Feb 2003 17:36:14 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 14 Feb 2003 17:36:14 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18jjkz-00021D-00 for ; Fri, 14 Feb 2003 18:36:13 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18jjy1-0003rS-00 for ; Fri, 14 Feb 2003 18:49:42 +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 18jjmK-0006YF-0E for emacs-devel@quimby.gnus.org; Fri, 14 Feb 2003 12:37:36 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18jjlg-0005mj-00 for emacs-devel@gnu.org; Fri, 14 Feb 2003 12:36:56 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18jjlN-00055M-00 for emacs-devel@gnu.org; Fri, 14 Feb 2003 12:36:41 -0500 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18jjl1-0004Eh-00 for emacs-devel@gnu.org; Fri, 14 Feb 2003 12:36:15 -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 h1EHZqm32600; Fri, 14 Feb 2003 18:35:53 +0100 Original-To: kai.grossjohann@uni-duisburg.de (Kai =?ISO-8859-1?Q?Gro=DFjohann?=) In-Reply-To: <84u1f6zu57.fsf@lucy.is.informatik.uni-duisburg.de> X-Mailer: Becky! ver. 2.05.09 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:11644 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:11644 On Fri, 14 Feb 2003 17:47:32 +0100, kai.grossjohann@uni-duisburg.de (Kai Gr= o=DFjohann) wrote: > I tried to byte-compile the current CVS Oort Gnus with the current CVS > Emacs. It barfed at the "? " in the source code of Gnus. Did it barf at every use of "? " or just "? " followed by a digit or symbol character? For example, now: ELISP> (list ? 1) *** Read error *** Invalid read syntax: "?" ELISP> (list ? 1) (32 1) ELISP> (list ? ()) (32 nil) /L/e/k/t/u