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/05 17:29:53 UTC

svn commit: r919472 - /subversion/trunk/subversion/include/svn_client.h

Author: stsp
Date: Fri Mar  5 16:29:53 2010
New Revision: 919472

URL: http://svn.apache.org/viewvc?rev=919472&view=rev
Log:
* subversion/include/svn_client.h
  (svn_client_patch): Document of what type elements in the FILTER_GLOBS
   array parameter should be.

Modified:
    subversion/trunk/subversion/include/svn_client.h

Modified: subversion/trunk/subversion/include/svn_client.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_client.h?rev=919472&r1=919471&r2=919472&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_client.h (original)
+++ subversion/trunk/subversion/include/svn_client.h Fri Mar  5 16:29:53 2010
@@ -4848,9 +4848,11 @@
  * This is useful when applying a unidiff which was created with the
  * original and modified files swapped due to human error.
  *
- * If @a filter_globs is not NULL, patch targets matching any glob
- * pattern in @a filter_globs will not be patched. The match is performed
- * on the target path as parsed from the patch file, after canonicalization.
+ * Exluding patch targets from the patching process is possible by
+ * passing a @a filter_globs array containing elements of type const char *.
+ * If @a filter_globs is not NULL, patch targets matching any glob pattern
+ * in @a filter_globs will not be patched. The match is performed on the
+ * target path as parsed from the patch file, after canonicalization.
  *
  * If @a ctx->notify_func2 is non-NULL, invoke @a ctx->notify_func2 with
  * @a ctx->notify_baton2 as patching progresses.