You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Bert Huijben <be...@qqmail.nl> on 2010/05/27 11:30:24 UTC

RE: svn commit: r948785 - in /subversion/trunk/subversion: include/svn_client.h libsvn_client/deprecated.c libsvn_client/diff.c svn/cl.h svn/diff-cmd.c svn/log-cmd.c svn/main.c


> -----Original Message-----
> From: stylesen@apache.org [mailto:stylesen@apache.org]
> Sent: donderdag 27 mei 2010 13:08
> To: commits@subversion.apache.org
> Subject: svn commit: r948785 - in /subversion/trunk/subversion:
> include/svn_client.h libsvn_client/deprecated.c libsvn_client/diff.c svn/cl.h
> svn/diff-cmd.c svn/log-cmd.c svn/main.c
> 
> Author: stylesen
> Date: Thu May 27 11:08:12 2010
> New Revision: 948785
> 
> URL: http://svn.apache.org/viewvc?rev=948785&view=rev
> Log:
> Fix issue #3071.
> 
> Request enhancement to svn diff to indicate that an external diff-cmd
> should NOT be used

Why don't you use the same method as --diff-cmd? (That seems like a much easier way to handle this enhancement)

--diff-cmd is only handled in subversion/svn/main.c:

(line 2095-2099)
/* XXX: Only diff_cmd for now, overlay rest later and stop passing
     opt_state altogether? */
  if (opt_state.diff_cmd)
    svn_config_set(cfg_config, SVN_CONFIG_SECTION_HELPERS,
                   SVN_CONFIG_OPTION_DIFF_CMD, opt_state.diff_cmd);

	Bert 


Re: svn commit: r948785 - in /subversion/trunk/subversion: include/svn_client.h libsvn_client/deprecated.c libsvn_client/diff.c svn/cl.h svn/diff-cmd.c svn/log-cmd.c svn/main.c

Posted by Senthil Kumaran S <se...@collab.net>.
Bert Huijben wrote:
> 
>> -----Original Message-----
>> From: stylesen@apache.org [mailto:stylesen@apache.org]
>> Sent: donderdag 27 mei 2010 13:08
>> To: commits@subversion.apache.org
>> Subject: svn commit: r948785 - in /subversion/trunk/subversion:
>> include/svn_client.h libsvn_client/deprecated.c libsvn_client/diff.c svn/cl.h
>> svn/diff-cmd.c svn/log-cmd.c svn/main.c
>>
>> Author: stylesen
>> Date: Thu May 27 11:08:12 2010
>> New Revision: 948785
>>
>> URL: http://svn.apache.org/viewvc?rev=948785&view=rev
>> Log:
>> Fix issue #3071.
>>
>> Request enhancement to svn diff to indicate that an external diff-cmd
>> should NOT be used
> 
> Why don't you use the same method as --diff-cmd? (That seems like a much easier way to handle this enhancement)
> 
> --diff-cmd is only handled in subversion/svn/main.c:
> 
> (line 2095-2099)
> /* XXX: Only diff_cmd for now, overlay rest later and stop passing
>      opt_state altogether? */
>   if (opt_state.diff_cmd)
>     svn_config_set(cfg_config, SVN_CONFIG_SECTION_HELPERS,
>                    SVN_CONFIG_OPTION_DIFF_CMD, opt_state.diff_cmd);

Done in r948802. I didn't know such an easy way exists when I started this :)

Thank You.
-- 
Senthil Kumaran S
http://www.stylesen.org/