From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15384 invoked by alias); 30 Sep 2009 17:11:17 -0000 Received: (qmail 15368 invoked by uid 22791); 30 Sep 2009 17:11:15 -0000 X-SWARE-Spam-Status: No, hits=-2.6 required=5.0 tests=BAYES_00 X-Spam-Check-By: sourceware.org Received: from fmmailgate06.web.de (HELO fmmailgate06.web.de) (217.72.192.247) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 30 Sep 2009 17:11:04 +0000 Received: from web.de by fmmailgate06.web.de (Postfix) with SMTP id 0F8155EFDB for ; Wed, 30 Sep 2009 19:11:02 +0200 (CEST) Received: from [78.48.39.170] by freemailng6001.web.de with HTTP; Wed, 30 Sep 2009 19:11:00 +0200 Date: Wed, 30 Sep 2009 17:11:00 -0000 Message-Id: <1398901133@web.de> MIME-Version: 1.0 From: SF Markus Elfring To: patchutils-list@sourceware.org Subject: Support for index data by splitdiff command X-Sender: markus.elfring@web.de Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact patchutils-list-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: patchutils-list-owner@sourceware.org X-SW-Source: 2009-q3/txt/msg00000.txt.bz2 Hello, I would like to point out an open issue for the tool "splitdiff" from the software package "patchutils 0.3.0-1.52". A special header "Index:" is mentioned in the article "http://en.wikipedia.org/wiki/Diff". Tools like Subversion write it into difference files. The current command does not handle this data correctly. The following input ... Index: abc.h =================================================================== --- abc.h (Revision 123) +++ abc.h (work copy) @@ -1,1 +1,1 @@ -check +out Index: xyz.h =================================================================== --- xyz.h (Revision 987) +++ xyz.h (work copy) @@ -1,1 +1,1 @@ -test +this ... is converted into the following arrangement by "splitdiff -a". First source file: --- abc.h (Revision 123) +++ abc.h (work copy) @@ -1,1 +1,1 @@ -check +out Index: xyz.h =================================================================== Second source file: --- xyz.h (Revision 987) +++ xyz.h (work copy) @@ -1,1 +1,1 @@ -test +this I would appreciate if the first file will keep its own header and will not additionally get informations from the second file. Regards, Markus