[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] Ruby bindings client for merge_peg

From: Kouhei Sutou <kou_at_cozmixng.org>
Date: 2007-08-14 13:15:01 CEST

Hi,

> * subversion/bindings/swig/ruby/svn/client.rb
> (Svn::Client::Context#merge_peg) make the peg_rev argument mandatory
> instead of optional.

> Index: subversion/bindings/swig/ruby/svn/client.rb
> ===================================================================
> --- subversion/bindings/swig/ruby/svn/client.rb (revision 26069)
> +++ subversion/bindings/swig/ruby/svn/client.rb (working copy)
> @@ -315,8 +315,8 @@
> dry_run, options, self)
> end
>
> - def merge_peg(src, rev1, rev2, target_wcpath,
> - peg_rev=nil, depth=nil,
> + def merge_peg(src, rev1, rev2, target_wcpath, peg_rev,
> + depth=nil,
> ignore_ancestry=false, force=false,
> dry_run=false, options=nil, record_only=false)
> Client.merge_peg3(src, rev1, rev2, peg_rev,

Uhm... What about the following:

      def merge_peg(src, rev1, rev2, target_wcpath,
                    peg_rev=nil, depth=nil, ...)
        peg_rev ||= rev2
        ...

Thanks,

--
kou
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Aug 14 13:12:57 2007

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.