It was just pointed out on #svn-dev that svn_ra_do_update() doesn't
receive copyfrom information. Julian added a note for svn_ra_do_diff2()
in r18483, but not for _do_update(), _do_switch(), or _do_status(),
all of which I suspect are in the same boat.
The attached patch just replicates the note for those three; okay
to apply?
[[[
* subversion/include/svn_ra.h
(svn_ra_do_update, svn_ra_do_switch, svn_ra_do_status): Mention that
these functions also do not provide copyfrom information.
Followup to r18483.
]]]
Regards,
Malcolm
Index: subversion/include/svn_ra.h
===================================================================
--- subversion/include/svn_ra.h (revision 18862)
+++ subversion/include/svn_ra.h (working copy)
@@ -737,6 +737,9 @@
*
* Use @a pool for memory allocation.
*
+ * @note The reporter provided by this function does NOT supply copy-
+ * from information to the diff editor callbacks.
+ *
* @since New in 1.2.
*/
svn_error_t *svn_ra_do_update(svn_ra_session_t *session,
@@ -785,6 +788,9 @@
*
* Use @a pool for memory allocation.
*
+ * @note The reporter provided by this function does NOT supply copy-
+ * from information to the diff editor callbacks.
+ *
* @since New in 1.2.
*/
svn_error_t *svn_ra_do_switch(svn_ra_session_t *session,
@@ -830,6 +836,9 @@
*
* Use @a pool for memory allocation.
*
+ * @note The reporter provided by this function does NOT supply copy-
+ * from information to the diff editor callbacks.
+ *
* @since New in 1.2.
*/
svn_error_t *svn_ra_do_status(svn_ra_session_t *session,
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Mar 13 21:27:47 2006