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

Re: svn commit: rev 5793 - trunk/tools/client-side

From: Kalle Olavi Niemitalo <kon_at_iki.fi>
Date: 2003-05-04 15:07:50 CEST

rooneg@tigris.org writes:

> +(defun vc-svn-find-version (file rev buffer)
> + (apply 'vc-do-command buffer 0 vc-svn-program-name file
> + "cat" (list "-r" rev)))

That can be simplified to:

(defun vc-svn-find-version (file rev buffer)
  (vc-do-command buffer 0 vc-svn-program-name file
                 "cat" "-r" rev))

which is consistent with the rest of vc-svn.el.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun May 4 15:51:05 2003

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.