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 592E010B51 for ; Sun, 7 Jul 2013 15:53:55 +0000 (UTC) Received: (qmail 70611 invoked by uid 500); 7 Jul 2013 15:53:54 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 70596 invoked by uid 500); 7 Jul 2013 15:53:53 -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 70584 invoked by uid 99); 7 Jul 2013 15:53:52 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Jul 2013 15:53:52 +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; Sun, 07 Jul 2013 15:53:49 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D9B5E2388A9B; Sun, 7 Jul 2013 15:53:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1500462 - /subversion/trunk/tools/dist/backport.pl Date: Sun, 07 Jul 2013 15:53:28 -0000 To: commits@subversion.apache.org From: danielsh@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130707155328.D9B5E2388A9B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: danielsh Date: Sun Jul 7 15:53:28 2013 New Revision: 1500462 URL: http://svn.apache.org/r1500462 Log: * tools/dist/backport.pl: Rename a variable for clarity. No functional change. Modified: subversion/trunk/tools/dist/backport.pl Modified: subversion/trunk/tools/dist/backport.pl URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/backport.pl?rev=1500462&r1=1500461&r2=1500462&view=diff ============================================================================== --- subversion/trunk/tools/dist/backport.pl (original) +++ subversion/trunk/tools/dist/backport.pl Sun Jul 7 15:53:28 2013 @@ -234,7 +234,7 @@ sub sanitize_branch { # TODO: may need to parse other headers too? sub parse_entry { - my $lines = shift; + my $raw = shift; my @lines = @_; my (@revisions, @logsummary, $branch, @votes); # @lines = @_; @@ -286,7 +286,7 @@ sub parse_entry { id => $id, votes => [@votes], entry => [@lines], - raw => $lines, + raw => $raw, ); } @@ -411,8 +411,8 @@ sub handle_entry { my $in_approved = shift; my $approved = shift; my $votes = shift; - my $lines = shift; - my %entry = parse_entry $lines, @_; + my $raw = shift; + my %entry = parse_entry $raw, @_; my @vetoes = grep { /^ -1:/ } @{$entry{votes}}; if ($YES) {