Hi, I'm confused on the following code:
if ((opt_baton->start_rev.kind != svn_opt_revision_unspecified)
|| (opt_baton->end_rev.kind != svn_opt_revision_unspecified))
return svn_error_create(
SVN_ERR_CL_ARG_PARSING_ERROR, NULL,
_("Cannot specify revisions via both command-line arguments "
"and the --revision (-r) option"));
It seem that if I can not specify start_rev or end_rev. But the
message is very strange,
Is ' --revision (-r) option' not a command-line argument?
Thanks,
Dongsheng

