From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Angelo Graziosi Newsgroups: gmane.emacs.devel Subject: Re: Stak dump with tar.[bz2/gz] files (Cygwin) Date: Tue, 23 Dec 2008 20:51:42 +0100 Message-ID: <4951414E.5030504@alice.it> References: <48511871.1090203@alice.it> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1230061938 18356 80.91.229.12 (23 Dec 2008 19:52:18 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 23 Dec 2008 19:52:18 +0000 (UTC) To: emacs-devel@gnu.org, jasonr@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Dec 23 20:53:23 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 1LFDJb-0000Hk-Ak for ged-emacs-devel@m.gmane.org; Tue, 23 Dec 2008 20:53:15 +0100 Original-Received: from localhost ([127.0.0.1]:45825 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LFDIO-0004jE-G2 for ged-emacs-devel@m.gmane.org; Tue, 23 Dec 2008 14:52:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LFDIH-0004gd-5l for emacs-devel@gnu.org; Tue, 23 Dec 2008 14:51:53 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LFDIE-0004fP-IB for emacs-devel@gnu.org; Tue, 23 Dec 2008 14:51:52 -0500 Original-Received: from [199.232.76.173] (port=37868 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LFDIE-0004fC-BY for emacs-devel@gnu.org; Tue, 23 Dec 2008 14:51:50 -0500 Original-Received: from smtp-out113.alice.it ([85.37.17.113]:1773) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LFDIC-00005o-CY; Tue, 23 Dec 2008 14:51:48 -0500 Original-Received: from FBCMMO02.fbc.local ([192.168.68.196]) by smtp-out113.alice.it with Microsoft SMTPSVC(6.0.3790.1830); Tue, 23 Dec 2008 20:51:50 +0100 Original-Received: from FBCMCL01B05.fbc.local ([192.168.69.86]) by FBCMMO02.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Tue, 23 Dec 2008 20:51:46 +0100 Original-Received: from [82.57.149.48] ([82.57.149.48]) by FBCMCL01B05.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Tue, 23 Dec 2008 20:51:50 +0100 User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) In-Reply-To: <48511871.1090203@alice.it> X-OriginalArrivalTime: 23 Dec 2008 19:51:50.0158 (UTC) FILETIME=[E54FAAE0:01C96537] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ 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:107252 Archived-At: (Wrong link in my previous post, sorry!) The patch proposed here http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-12/msg00642.html seems to solve this bug! (Now, with tar files, there is only the annoying bug #1655) Many thanks, Angelo. Angelo Graziosi ha scritto: > I want to flag that current CVS 23.0.60 of Emacs stack dumps when > loading tar.[bz2/gz] files, on Cygwin. > > This happens with simple file like this > > $ cat hello.c > /* hello.c */ > #include > > int main() > { > printf("Hello World\n"); > } > > $ tar -cjf hello.tar.bz2 hello.c > > $ emacs -Q& > C-x C-f /tmp/hello.tar.bz2 RET > > and after bunzipping it stack dumps > > $ > [2]+ Aborted (core dumped) emacs -Q > > > If the file is a simple .tar (hello.tar): > > $ emacs -Q& > C-x C-f /tmp/hello.tar RET > > the file is loaded BUT... > > ...BUT closing it (click on the 'x' of the tool-bar) and reloading > > C-x C-f /tmp/hello.tar RET > > still aborts: > > $ > [1]+ Aborted (core dumped) emacs -Q > > > The last useful CVS which works fine with tar files is that > > cvs ... -D "27 May 2008 12:00" > > Instead, the first which does NOT work is -D "28 May 2008 12:00". > > I haven't searched between these two dates (hours). > > From the lisp/ChangeLog I see that about May 27 there was several > changes to tar mode. > > > Cheers, > Angelo. > >