From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: CEDET merge Date: Wed, 30 Sep 2009 20:38:30 +0200 Message-ID: <837hvgqnvd.fsf@gnu.org> References: <87hbun9jbs.fsf@stupidchicken.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1254342686 30926 80.91.229.12 (30 Sep 2009 20:31:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 30 Sep 2009 20:31:26 +0000 (UTC) Cc: cyd@stupidchicken.com, emacs-devel@gnu.org To: Juanma Barranquero Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Sep 30 22:31:19 2009 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 1Mt5pP-0007Cr-P9 for ged-emacs-devel@m.gmane.org; Wed, 30 Sep 2009 22:31:12 +0200 Original-Received: from localhost ([127.0.0.1]:44674 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mt5pO-0007l8-Ul for ged-emacs-devel@m.gmane.org; Wed, 30 Sep 2009 16:31:11 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mt42O-00035T-Bz for emacs-devel@gnu.org; Wed, 30 Sep 2009 14:36:28 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mt42N-00035F-IM for emacs-devel@gnu.org; Wed, 30 Sep 2009 14:36:27 -0400 Original-Received: from [199.232.76.173] (port=57063 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mt42N-00035C-Dz for emacs-devel@gnu.org; Wed, 30 Sep 2009 14:36:27 -0400 Original-Received: from mtaout2.012.net.il ([84.95.2.4]:24098) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mt42N-0007V3-22 for emacs-devel@gnu.org; Wed, 30 Sep 2009 14:36:27 -0400 Original-Received: from conversion-daemon.i_mtaout2.012.net.il by i_mtaout2.012.net.il (HyperSendmail v2004.12) id <0KQS00A00RJ8JZ00@i_mtaout2.012.net.il> for emacs-devel@gnu.org; Wed, 30 Sep 2009 20:36:24 +0200 (IST) Original-Received: from HOME-C4E4A596F7 ([84.228.188.180]) by i_mtaout2.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0KQS00DACROOPUR0@i_mtaout2.012.net.il>; Wed, 30 Sep 2009 20:36:24 +0200 (IST) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by monty-python.gnu.org: Solaris 9.1 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:115810 Archived-At: > From: Juanma Barranquero > Date: Wed, 30 Sep 2009 11:32:25 +0200 > Cc: emacs-devel@gnu.org > > semantic/cedet/wisent/javat-wy.el has coding issues, because of this line: > > ("char" summary "Integral primitive type ('^@' to '\357\227\227') > (0 to 65535)") > > so on Windows it is decoded as "=(Unix)" (i.e., no-conversion, LF), The same happens on Unix, because the null byte forces the file to be treated as binary. > and does not compile: > > In toplevel form: > javat-wy.el:680:36:Error: End of file during parsing Why, because the lines actually have CRLF Windows-style EOLs on your machine? Or for some other reason? IOW, I don't see why no-conversion should cause the file not to compile, and only on Windows. What am I missing? Anyway, 2 ideas to work around this: . Replace the null byte with \000 . Put "inhibit-null-byte-detection: t" in file-local variables.