Author: danielsh
Date: Fri Aug 2 09:28:29 2013
New Revision: 1509587
URL: http://svn.apache.org/r1509587
Log:
* tools/dist/backport.pl
(handle_entry): In the post-merge prompt, don't accept unknown responses.
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=1509587&r1=1509586&r2=1509587&view=diff
==============================================================================
--- subversion/trunk/tools/dist/backport.pl (original)
+++ subversion/trunk/tools/dist/backport.pl Fri Aug 2 09:28:29 2013
@@ -636,6 +636,12 @@ sub handle_entry {
or warn "diff failed ($?): $!";
next;
}
+ when (/^N/i) {
+ # fall through.
+ }
+ default {
+ next;
+ }
}
revert;
next PROMPT;