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 841C476FC for ; Mon, 1 Aug 2011 14:47:31 +0000 (UTC) Received: (qmail 19298 invoked by uid 500); 1 Aug 2011 14:47:31 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 19263 invoked by uid 500); 1 Aug 2011 14:47:30 -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 19256 invoked by uid 99); 1 Aug 2011 14:47:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Aug 2011 14:47:30 +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; Mon, 01 Aug 2011 14:47:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3A28E23889E3 for ; Mon, 1 Aug 2011 14:47:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1152809 - /subversion/trunk/subversion/libsvn_client/merge.c Date: Mon, 01 Aug 2011 14:47:08 -0000 To: commits@subversion.apache.org From: pburba@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110801144709.3A28E23889E3@eris.apache.org> Author: pburba Date: Mon Aug 1 14:47:07 2011 New Revision: 1152809 URL: http://svn.apache.org/viewvc?rev=1152809&view=rev Log: * subversion/libsvn_client/merge.c (record_mergeinfo_for_added_subtrees): Simplify doc string; just tell what it does, rather than why it's being called. Modified: subversion/trunk/subversion/libsvn_client/merge.c Modified: subversion/trunk/subversion/libsvn_client/merge.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/merge.c?rev=1152809&r1=1152808&r2=1152809&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/merge.c (original) +++ subversion/trunk/subversion/libsvn_client/merge.c Mon Aug 1 14:47:07 2011 @@ -7748,15 +7748,10 @@ record_mergeinfo_for_dir_merge(svn_merge /* Helper for do_directory_merge(). - Similar to record_mergeinfo_for_dir_merge in that it records mergeinfo - describing a merge of MERGED_RANGE->START:MERGED_RANGE->END from the - repository relative path MERGEINFO_PATH to MERGE->TARGET_ABSPATH. - Unlike record_mergeinfo_for_dir_merge() though, this - funtion only records mergeinfo on *new* subtrees added by the merge which - are children of paths with non-inheritable ranges or which have missing - siblings - see criteria 3 and 5 in the doc string for get_mergeinfo_paths. - See also issue #2829 - http://subversion.tigris.org/issues/show_bug.cgi?id=2829#desc14. + Record mergeinfo describing a merge of + MERGED_RANGE->START:MERGED_RANGE->END from the repository relative path + MERGEINFO_PATH to each path in NOTIFY_B->ADDED_ABSPATHS which is the + immediate child of a parent with explicit non-inheritable mergeinfo. DEPTH, NOTIFY_B, MERGE_B, and SQUELCH_MERGEINFO_NOTIFICATIONS, are cascaded from do_directory_merge's arguments of the same names.