From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Jackson Ray Hamilton Newsgroups: gmane.emacs.devel Subject: Re: make fails for Gnu Elpa Date: Sat, 31 Dec 2016 07:47:47 -0800 Message-ID: References: <878tr15yot.fsf@web.de> <87ful95shp.fsf@web.de> <2ab8427e-f7a7-494a-19cd-f32c40772675@jacksonrayhamilton.com> <87k2aggujr.fsf@web.de> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1483199340 21461 195.159.176.226 (31 Dec 2016 15:49:00 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sat, 31 Dec 2016 15:49:00 +0000 (UTC) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.5.1 Cc: Emacs Development , Noam Postavsky To: Michael Heerdegen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 31 16:48:56 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cNLtt-0004Fo-CC for ged-emacs-devel@m.gmane.org; Sat, 31 Dec 2016 16:48:53 +0100 Original-Received: from localhost ([::1]:44597 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cNLtv-0006YK-02 for ged-emacs-devel@m.gmane.org; Sat, 31 Dec 2016 10:48:55 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33913) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cNLtE-0006YE-5G for emacs-devel@gnu.org; Sat, 31 Dec 2016 10:48:16 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cNLsx-0008WD-6l for emacs-devel@gnu.org; Sat, 31 Dec 2016 10:48:12 -0500 Original-Received: from mta-05-3.privateemail.com ([68.65.122.15]:57668) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cNLsx-0008VA-20 for emacs-devel@gnu.org; Sat, 31 Dec 2016 10:47:55 -0500 Original-Received: from [10.145.8.123] (unknown [10.20.151.205]) by MTA-05.privateemail.com (Postfix) with ESMTPA id B17A060030; Sat, 31 Dec 2016 15:47:47 +0000 (UTC) X-Enigmail-Draft-Status: N1110 In-Reply-To: <87k2aggujr.fsf@web.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 68.65.122.15 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:211030 Archived-At: > Yes, it indeed does fix it here. Excellent. I've just applied the patch and pushed to master. > context-coloring/fixtures/test/let.el contains invalid syntax Yep, it's intentional. The presence of that unfinished expression is meant to confirm that my own (fault-tolerant) Emacs Lisp parser doesn't barf when it encounters that. Also, you may want to consider observing the ".nosearch" file in my project's "fixtures/" directory. It's meant to keep tools that do recursive searches out of trouble. The ".el" files in my "fixtures/" directory are better thought of as blobs of potential user input rather than serious programs. Jackson On 12/31/2016 04:19 AM, Michael Heerdegen wrote: > Jackson Ray Hamilton writes: >=20 >> Weird, the order of the arguments to tar produces the same output with >> both of those commands on my machine. >> >> $ tar --version >> tar (GNU tar) 1.27.1 >> >> Michael, does the attached patch fix the issue for you? >=20 > Yes, it indeed does fix it here. >=20 >=20 > @Jackson: FWIW, I also noticed that > context-coloring/fixtures/test/let.el contains invalid syntax in the > last expression: >=20 > #+begin_src emacs-lisp > (let (a ')) > #+end_src >=20 > Dunno if this is intended. I stumbled over it because el-search barfed > about the file. I'll change el-search to ignore files with broken > syntax, so it's not a problem for me. >=20 >=20 > Regards, >=20 > Michael. >=20