Ugh. Stupid rule.
On Thu, Jun 4, 2009 at 13:44, Hyrum K. Wright<hyrum_at_hyrumwright.org> wrote:
> Author: hwright
> Date: Thu Jun  4 04:44:14 2009
> New Revision: 37929
>
> Log:
> * subversion/libsvn_wc/relocate.c
> Â (svn_wc_relocate3): Add some parenthesis. Â While not strictly required, this
> Â Â follows the counsel of HACKING to "be generous with parentheses even when
> Â Â you're sure about the operator precedence".
>
> Modified:
> Â trunk/subversion/libsvn_wc/relocate.c
>
> Modified: trunk/subversion/libsvn_wc/relocate.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_wc/relocate.c?pathrev=37929&r1=37928&r2=37929
> ==============================================================================
> --- trunk/subversion/libsvn_wc/relocate.c    Thu Jun  4 03:12:46 2009     (r37928)
> +++ trunk/subversion/libsvn_wc/relocate.c    Thu Jun  4 04:44:14 2009     (r37929)
> @@ -161,8 +161,8 @@ svn_wc_relocate3(const char *path,
> Â Â Â svn_pool_clear(subpool);
>
> Â Â Â if (recurse && (entry->kind == svn_node_dir)
> - Â Â Â Â Â && (! entry->deleted || (entry->schedule == svn_wc_schedule_add))
> - Â Â Â Â Â && ! entry->absent
> + Â Â Â Â Â && ((! entry->deleted) || (entry->schedule == svn_wc_schedule_add))
> + Â Â Â Â Â && (! entry->absent)
> Â Â Â Â Â && (entry->depth != svn_depth_exclude))
> Â Â Â Â {
> Â Â Â Â Â svn_wc_adm_access_t *subdir_access;
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=495&dsMessageId=2359401
>
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2360059
Received on 2009-06-07 09:01:26 CEST