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 735C04508 for ; Tue, 21 Jun 2011 19:16:18 +0000 (UTC) Received: (qmail 82382 invoked by uid 500); 21 Jun 2011 19:16:18 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 82362 invoked by uid 500); 21 Jun 2011 19:16:18 -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 82355 invoked by uid 99); 21 Jun 2011 19:16:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jun 2011 19:16:18 +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; Tue, 21 Jun 2011 19:16:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 130D92388900; Tue, 21 Jun 2011 19:15:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1138139 - /subversion/trunk/subversion/libsvn_client/add.c Date: Tue, 21 Jun 2011 19:15:57 -0000 To: commits@subversion.apache.org From: danielsh@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110621191557.130D92388900@eris.apache.org> Author: danielsh Date: Tue Jun 21 19:15:56 2011 New Revision: 1138139 URL: http://svn.apache.org/viewvc?rev=1138139&view=rev Log: * subversion/libsvn_client/add.c (split_props): Add a comment for grep-friendliness. Modified: subversion/trunk/subversion/libsvn_client/add.c Modified: subversion/trunk/subversion/libsvn_client/add.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/add.c?rev=1138139&r1=1138138&r2=1138139&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/add.c (original) +++ subversion/trunk/subversion/libsvn_client/add.c Tue Jun 21 19:15:56 2011 @@ -133,6 +133,7 @@ split_props(apr_array_header_t **props, } else if (property[i] == ';') { + /* ";;" becomes ";" */ if (property[i+1] == ';') { new_prop[j] = ';';