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.
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
- application/pgp-signature attachment: stored
Received on Wed Apr 11 23:11:56 2007