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

Re: svn commit: r24535 - trunk/subversion/libsvn_client

From: Karl Fogel <kfogel_at_red-bean.com>
Date: 2007-04-11 23:39:05 CEST

Daniel Rall <dlr@collab.net> writes:
> Thanks for adding the comment, Karl.
>
> I thought we were supposed to stay _under_ 80 columns? I had broken
> this over two lines to keep it so.

It is under 80 columns (last char is on 77 according to my editor)... ?

-K

> On Wed, 11 Apr 2007, kfogel@tigris.org wrote:
>
>> Author: kfogel
>> Date: Wed Apr 11 14:01:50 2007
>> New Revision: 24535
>>
>> Log:
>> * subversion/libsvn_client/list.c
>> (svn_client_list): Follow up to r24529 with a comment and a
>> formatting simplification.
>>
>>
>> Modified:
>> trunk/subversion/libsvn_client/list.c
>>
>> Modified: trunk/subversion/libsvn_client/list.c
>> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_client/list.c?pathrev=24535&r1=24534&r2=24535
>> ==============================================================================
>> --- trunk/subversion/libsvn_client/list.c (original)
>> +++ trunk/subversion/libsvn_client/list.c Wed Apr 11 14:01:50 2007
>> @@ -283,8 +283,11 @@
>> return svn_client_list2(path_or_url,
>> peg_revision,
>> revision,
>> - (recurse ?
>> - svn_depth_infinity : svn_depth_immediates),
>> + /* Don't use SVN_DEPTH_FROM_RECURSE() here,
>> + because it defaults to svn_depth_files
>> + in the non-recursive case, whereas we need
>> + svn_depth_immediates for compatibilty. */
>> + recurse ? svn_depth_infinity : svn_depth_immediates,
>> dirent_fields,
>> fetch_locks,
>> list_func,
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: svn-unsubscribe@subversion.tigris.org
>> For additional commands, e-mail: svn-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Apr 11 23:39:26 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.