http://subversion.tigris.org/issues/show_bug.cgi?id=2683
User malcolm changed the following:
What ld value
|New value
============================================================
====================
QA contact|
|issues subversion
------------------------------------------------------------
--------------------
Subcomponent|unknown
|libsvn_subr
------------------------------------------------------------
--------------------
------- Additional comments from malcolm tigris.org Thu Jan 4 15:07:53 -0800 2007 -------
Here's a basic patch I'm using locally (that Julian wrote)
to achieve exactly
this functionality:
Index: subversion/libsvn_subr/opt.c
============================================================
=======
--- subversion/libsvn_subr/opt.c (revision 22899)
+++ subversion/libsvn_subr/opt.c (working copy)
 -493,6
+493,8 
*
* - For "committed", set REVISION->kind to
svn_opt_revision_committed.
*
+ * - For "working", set REVISION->kind to
svn_opt_revision_working.
+ *
* If match, return 0, else return -1 and don't touch
REVISION.
*/
static int
 -514,6
+516,10 
{
revision->kind = svn_opt_revision_committed;
}
+ else if (strcasecmp (word, "working") == 0)
+ {
+ revision->kind = svn_opt_revision_working;
+ }
else
return -1;
Obviously it's missing the help output, at the very least.
Also note that
currently WORKING:BASE wc-wc diffs (and probably
WORKING:repos diffs) are...
broken, to say the least. (That's partly because there's no
way to exercise the
behaviour through the command-line client, though we
shouldn't take the
brokeness of libsvn_wc as the sole reason to include this
feature.)
------------------------------------------------------------
---------
To unsubscribe, e-mail: issues-unsubscribe subversion.tigris.org
For additional commands, e-mail: issues-help subversion.tigris.org
|