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 2012/12/24 22:07:43 UTC

svn commit: r1425681 - /subversion/trunk/subversion/libsvn_diff/diff_file.c

Author: danielsh
Date: Mon Dec 24 21:07:43 2012
New Revision: 1425681

URL: http://svn.apache.org/viewvc?rev=1425681&view=rev
Log:
* subversion/libsvn_diff/diff_file.c
  (CHUNK_SHIFT): Add a cross-reference to test_wrap() (for issue #4133),
    which relies on the value of this constant.

Modified:
    subversion/trunk/subversion/libsvn_diff/diff_file.c

Modified: subversion/trunk/subversion/libsvn_diff/diff_file.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_diff/diff_file.c?rev=1425681&r1=1425680&r2=1425681&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_diff/diff_file.c (original)
+++ subversion/trunk/subversion/libsvn_diff/diff_file.c Mon Dec 24 21:07:43 2012
@@ -122,6 +122,7 @@ datasource_to_index(svn_diff_datasource_
  * whatsoever.  If there is a number someone comes up with that has some
  * argumentation, let's use that.
  */
+/* If you change this number, update test_wrap() in diff-diff3-test.c */
 #define CHUNK_SHIFT 17
 #define CHUNK_SIZE (1 << CHUNK_SHIFT)