You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/03/04 12:35:44 UTC

svn commit: r918948 - /subversion/trunk/subversion/libsvn_client/patch.c

Author: stsp
Date: Thu Mar  4 11:35:44 2010
New Revision: 918948

URL: http://svn.apache.org/viewvc?rev=918948&view=rev
Log:
* subversion/libsvn_client/patch.c
  (apply_hunk): Remove ### comment which I added in a confused state.
    Unexpected results I saw during testing were due to a broken patch,
    not svn patch's behaviour.

Modified:
    subversion/trunk/subversion/libsvn_client/patch.c

Modified: subversion/trunk/subversion/libsvn_client/patch.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/patch.c?rev=918948&r1=918947&r2=918948&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/patch.c (original)
+++ subversion/trunk/subversion/libsvn_client/patch.c Thu Mar  4 11:35:44 2010
@@ -921,7 +921,6 @@
 
       /* Skip the target's version of the hunk.
        * Don't skip trailing lines which matched with fuzz. */
-      /* ### What if current line is part of hunk context? */
       line = target->current_line + hi->hunk->original_length - (2 * hi->fuzz);
       SVN_ERR(seek_to_line(target, line, pool));
       if (target->current_line != line)