Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 13AD9D140 for ; Wed, 5 Sep 2012 04:03:37 +0000 (UTC) Received: (qmail 74219 invoked by uid 500); 5 Sep 2012 04:03:37 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 74180 invoked by uid 500); 5 Sep 2012 04:03:36 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 74172 invoked by uid 99); 5 Sep 2012 04:03:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Sep 2012 04:03:36 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Sep 2012 04:03:34 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 46A5F2388AA6; Wed, 5 Sep 2012 04:02:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1380973 - in /subversion/branches/1.7.x: ./ STATUS subversion/libsvn_client/diff.c Date: Wed, 05 Sep 2012 04:02:41 -0000 To: commits@subversion.apache.org From: svn-role@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120905040241.46A5F2388AA6@eris.apache.org> Author: svn-role Date: Wed Sep 5 04:02:40 2012 New Revision: 1380973 URL: http://svn.apache.org/viewvc?rev=1380973&view=rev Log: Merge r1380697 from trunk: * r1380697 Fix duplicated Index: lines in 'svn diff' output with external diff tool. Justification: Obvious bug. User complained and submitted patch. Votes: +1: stsp, philip, rhuijben Modified: subversion/branches/1.7.x/ (props changed) subversion/branches/1.7.x/STATUS subversion/branches/1.7.x/subversion/libsvn_client/diff.c Propchange: subversion/branches/1.7.x/ ------------------------------------------------------------------------------ Merged /subversion/trunk:r1380697 Modified: subversion/branches/1.7.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/STATUS?rev=1380973&r1=1380972&r2=1380973&view=diff ============================================================================== --- subversion/branches/1.7.x/STATUS (original) +++ subversion/branches/1.7.x/STATUS Wed Sep 5 04:02:40 2012 @@ -144,10 +144,3 @@ Veto-blocked changes: Approved changes: ================= - - * r1380697 - Fix duplicated Index: lines in 'svn diff' output with external diff tool. - Justification: - Obvious bug. User complained and submitted patch. - Votes: - +1: stsp, philip, rhuijben Modified: subversion/branches/1.7.x/subversion/libsvn_client/diff.c URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/subversion/libsvn_client/diff.c?rev=1380973&r1=1380972&r2=1380973&view=diff ============================================================================== --- subversion/branches/1.7.x/subversion/libsvn_client/diff.c (original) +++ subversion/branches/1.7.x/subversion/libsvn_client/diff.c Wed Sep 5 04:02:40 2012 @@ -1018,6 +1018,9 @@ diff_content_changed(const char *path, tmpfile1, tmpfile2, &exitcode, diff_cmd_baton->outfile, errfile, diff_cmd_baton->diff_cmd, subpool)); + + /* We have a printed a diff for this path, mark it as visited. */ + mark_path_as_visited(diff_cmd_baton, path); } else /* use libsvn_diff to generate the diff */ {