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: Stak dump with tar.[bz2/gz] files (Cygwin) Date: Thu, 12 Jun 2008 14:37:05 +0200 Message-ID: <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 1213274271 10244 80.91.229.12 (12 Jun 2008 12:37:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 12 Jun 2008 12:37:51 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 12 14:38:34 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 1K6m4W-00048N-Ps for ged-emacs-devel@m.gmane.org; Thu, 12 Jun 2008 14:38:33 +0200 Original-Received: from localhost ([127.0.0.1]:38722 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K6m3i-0007t8-JH for ged-emacs-devel@m.gmane.org; Thu, 12 Jun 2008 08:37:42 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K6m3c-0007sO-Ly for emacs-devel@gnu.org; Thu, 12 Jun 2008 08:37:36 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K6m3a-0007rM-Ne for emacs-devel@gnu.org; Thu, 12 Jun 2008 08:37:36 -0400 Original-Received: from [199.232.76.173] (port=59657 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K6m3a-0007rH-JT for emacs-devel@gnu.org; Thu, 12 Jun 2008 08:37:34 -0400 Original-Received: from smtp-out05a.alice.it ([85.33.3.5]:2003) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K6m3a-0006m8-5s for emacs-devel@gnu.org; Thu, 12 Jun 2008 08:37:34 -0400 Original-Received: from FBCMMO01.fbc.local ([192.168.68.195]) by smtp-OUT05A.alice.it with Microsoft SMTPSVC(6.0.3790.1830); Thu, 12 Jun 2008 14:37:00 +0200 Original-Received: from FBCMCL01B01.fbc.local ([192.168.69.82]) by FBCMMO01.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Thu, 12 Jun 2008 14:37:31 +0200 Original-Received: from [82.57.173.140] ([82.57.173.140]) by FBCMCL01B01.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Thu, 12 Jun 2008 14:37:31 +0200 User-Agent: Thunderbird 2.0.0.14 (Windows/20080421) X-OriginalArrivalTime: 12 Jun 2008 12:37:31.0948 (UTC) FILETIME=[1544DEC0:01C8CC89] X-detected-kernel: 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:99006 Archived-At: 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.