You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ne...@apache.org on 2010/01/30 23:43:02 UTC

svn commit: r904910 - /subversion/trunk/subversion/libsvn_wc/update_editor.c

Author: neels
Date: Sat Jan 30 22:43:01 2010
New Revision: 904910

URL: http://svn.apache.org/viewvc?rev=904910&view=rev
Log:
Give a static variable a slightly shorter name to fix r904873, which
introduced many lines >80 characters wide. (I had my terminal at 86 chars
by accident.)

* subversion/libsvn_wc/update_editor.c
  (make_dir_baton, do_entry_deletion, check_tree_conflict, do_entry_deletion,
  delete_entry, add_directory, open_directory, close_directory, add_file, 
  open_file):
    Rename INSIDE_LOCALLY_DELETED_AND_TREE_CONFLICTED_SUBTREE to
    IN_DELETED_AND_TREE_CONFLICTED_SUBTREE.


Modified:
    subversion/trunk/subversion/libsvn_wc/update_editor.c

Modified: subversion/trunk/subversion/libsvn_wc/update_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/update_editor.c?rev=904910&r1=904909&r2=904910&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/update_editor.c (original)
+++ subversion/trunk/subversion/libsvn_wc/update_editor.c Sat Jan 30 22:43:01 2010
@@ -301,7 +301,7 @@
   /* Set on a node and its descendants when a node gets tree conflicted
      and descendants should still be updated (not skipped).
      These nodes should all be marked as deleted. */
-  svn_boolean_t inside_locally_deleted_and_tree_conflicted_subtree;
+  svn_boolean_t in_deleted_and_tree_conflicted_subtree;
 
   /* Set iff this is a new directory that is not yet versioned and not
      yet in the parent's list of entries */
@@ -548,8 +548,8 @@
     {
       d->name = svn_dirent_basename(path, dir_pool);
       d->local_abspath = svn_dirent_join(pb->local_abspath, d->name, dir_pool);
-      d->inside_locally_deleted_and_tree_conflicted_subtree =
-          pb->inside_locally_deleted_and_tree_conflicted_subtree;
+      d->in_deleted_and_tree_conflicted_subtree =
+          pb->in_deleted_and_tree_conflicted_subtree;
     }
   else
     {
@@ -637,7 +637,7 @@
 do_entry_deletion(struct edit_baton *eb,
                   const char *local_abspath,
                   const char *their_url,
-                  svn_boolean_t inside_locally_deleted_and_tree_conflicted_subtree,
+                  svn_boolean_t in_deleted_and_tree_conflicted_subtree,
                   apr_pool_t *pool);
 
 static svn_error_t *
@@ -1568,7 +1568,7 @@
                     svn_wc_conflict_action_t action,
                     svn_node_kind_t their_node_kind,
                     const char *their_url,
-                    svn_boolean_t inside_locally_deleted_and_tree_conflicted_subtree,
+                    svn_boolean_t in_deleted_and_tree_conflicted_subtree,
                     apr_pool_t *pool)
 {
   svn_wc_conflict_reason_t reason = (svn_wc_conflict_reason_t)(-1);
@@ -1603,7 +1603,7 @@
          to record a conflict within the conflict. */
       if ((entry->schedule == svn_wc_schedule_delete
            || entry->schedule == svn_wc_schedule_replace)
-          && !inside_locally_deleted_and_tree_conflicted_subtree)
+          && !in_deleted_and_tree_conflicted_subtree)
         reason = entry->schedule == svn_wc_schedule_delete
                                     ? svn_wc_conflict_reason_deleted
                                     : svn_wc_conflict_reason_replaced;
@@ -1630,7 +1630,7 @@
              tree deletion then we will already have recorded a tree
              conflict on the locally deleted parent tree.  No need
              to record a conflict within the conflict. */
-          if (!inside_locally_deleted_and_tree_conflicted_subtree)
+          if (!in_deleted_and_tree_conflicted_subtree)
             reason = entry->schedule == svn_wc_schedule_delete
                                         ? svn_wc_conflict_reason_deleted
                                         : svn_wc_conflict_reason_replaced;
@@ -2085,7 +2085,7 @@
 do_entry_deletion(struct edit_baton *eb,
                   const char *local_abspath,
                   const char *their_url,
-                  svn_boolean_t inside_locally_deleted_and_tree_conflicted_subtree,
+                  svn_boolean_t in_deleted_and_tree_conflicted_subtree,
                   apr_pool_t *pool)
 {
   svn_error_t *err;
@@ -2151,7 +2151,7 @@
   SVN_ERR(check_tree_conflict(&tree_conflict, eb, local_abspath,
                               svn_wc_conflict_action_delete, svn_node_none,
                               their_url,
-                              inside_locally_deleted_and_tree_conflicted_subtree,
+                              in_deleted_and_tree_conflicted_subtree,
                               pool));
   if (tree_conflict != NULL)
     {
@@ -2337,7 +2337,7 @@
 
   return do_entry_deletion(pb->edit_baton, local_abspath,
                            their_url,
-                           pb->inside_locally_deleted_and_tree_conflicted_subtree,
+                           pb->in_deleted_and_tree_conflicted_subtree,
                            pool);
 }
 
@@ -2611,7 +2611,7 @@
                           &tree_conflict, eb, db->local_abspath,
                           svn_wc_conflict_action_add, svn_node_dir,
                           db->new_URL,
-                          db->inside_locally_deleted_and_tree_conflicted_subtree,
+                          db->in_deleted_and_tree_conflicted_subtree,
                           pool));
 
               if (tree_conflict != NULL)
@@ -2741,7 +2741,7 @@
      prep_directory() otherwise the administrative area for DB->PATH
      is not present, nor is there an entry for DB->PATH in DB->PATH's
      entries. */
-  if (pb->inside_locally_deleted_and_tree_conflicted_subtree)
+  if (pb->in_deleted_and_tree_conflicted_subtree)
     {
       svn_wc_entry_t tmp_entry;
       apr_uint64_t modify_flags = SVN_WC__ENTRY_MODIFY_SCHEDULE;
@@ -2769,7 +2769,7 @@
       svn_wc_notify_t *notify;
       svn_wc_notify_action_t action;
 
-      if (db->inside_locally_deleted_and_tree_conflicted_subtree)
+      if (db->in_deleted_and_tree_conflicted_subtree)
         action = svn_wc_notify_update_add_deleted;
       else if (db->existed)
         action = svn_wc_notify_exists;
@@ -2860,7 +2860,7 @@
   SVN_ERR(check_tree_conflict(&tree_conflict, eb, db->local_abspath,
                               svn_wc_conflict_action_edit,
                               svn_node_dir, db->new_URL,
-                              db->inside_locally_deleted_and_tree_conflicted_subtree,
+                              db->in_deleted_and_tree_conflicted_subtree,
                               pool));
 
   /* Remember the roots of any locally deleted trees. */
@@ -2894,7 +2894,7 @@
           return SVN_NO_ERROR;
         }
       else
-        db->inside_locally_deleted_and_tree_conflicted_subtree = TRUE;
+        db->in_deleted_and_tree_conflicted_subtree = TRUE;
     }
 
   /* Mark directory as being at target_revision and URL, but incomplete. */
@@ -3170,7 +3170,7 @@
       svn_wc_notify_t *notify;
       svn_wc_notify_action_t action;
 
-      if (db->inside_locally_deleted_and_tree_conflicted_subtree)
+      if (db->in_deleted_and_tree_conflicted_subtree)
         action = svn_wc_notify_update_update_deleted;
       else if (db->existed || db->add_existed)
         action = svn_wc_notify_exists;
@@ -3711,7 +3711,7 @@
 
   SVN_ERR(check_path_under_root(pb->local_abspath, fb->name, pool));
 
-  fb->deleted = pb->inside_locally_deleted_and_tree_conflicted_subtree;
+  fb->deleted = pb->in_deleted_and_tree_conflicted_subtree;
 
   /* The file_pool can stick around for a *long* time, so we want to
      use a subpool for any temporary allocations. */
@@ -3914,7 +3914,7 @@
                           &tree_conflict, eb, fb->local_abspath,
                           svn_wc_conflict_action_add, svn_node_file,
                           fb->new_URL,
-                          pb->inside_locally_deleted_and_tree_conflicted_subtree,
+                          pb->in_deleted_and_tree_conflicted_subtree,
                           subpool));
 
               if (tree_conflict != NULL)
@@ -4024,13 +4024,13 @@
       return SVN_NO_ERROR;
     }
 
-  fb->deleted = pb->inside_locally_deleted_and_tree_conflicted_subtree;
+  fb->deleted = pb->in_deleted_and_tree_conflicted_subtree;
 
   /* Is this path the victim of a newly-discovered tree conflict? */
   SVN_ERR(check_tree_conflict(&tree_conflict, eb, fb->local_abspath,
                               svn_wc_conflict_action_edit, svn_node_file,
                               fb->new_URL,
-                              pb->inside_locally_deleted_and_tree_conflicted_subtree,
+                              pb->in_deleted_and_tree_conflicted_subtree,
                               pool));
 
   if (tree_conflict)