You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2013/07/03 23:11:19 UTC

svn commit: r1499559 - /subversion/trunk/tools/dist/backport.pl

Author: danielsh
Date: Wed Jul  3 21:11:19 2013
New Revision: 1499559

URL: http://svn.apache.org/r1499559
Log:
* tools/dist/backport.pl
  (main): Start paragraph mode earlier.  Needed for the upcoming votes patch.

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=1499559&r1=1499558&r2=1499559&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Wed Jul  3 21:11:19 2013
@@ -314,10 +314,10 @@ sub main {
   die "Local mods to STATUS file $STATUS" if $YES and `$SVN status -q $STATUS`;
 
   # Skip most of the file
+  $/ = ""; # paragraph mode
   while (<STATUS>) {
     last if /^Status of \d+\.\d+/;
   }
-  $/ = ""; # paragraph mode
 
   $SIG{INT} = \&maybe_revert unless $YES;