You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2013/11/13 17:13:24 UTC

svn commit: r1541579 - /subversion/trunk/subversion/libsvn_repos/dump.c

Author: philip
Date: Wed Nov 13 16:13:24 2013
New Revision: 1541579

URL: http://svn.apache.org/r1541579
Log:
Remove unnecessary __.

* subversion/libsvn_repos/dump.c
  (tracker__trim): Rename to ...
  (tracker_trim): ... this.
  (tracker__add_entry): Rename to ...
  (tracker_add_entry): ... this.

Modified:
    subversion/trunk/subversion/libsvn_repos/dump.c

Modified: subversion/trunk/subversion/libsvn_repos/dump.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/dump.c?rev=1541579&r1=1541578&r2=1541579&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_repos/dump.c (original)
+++ subversion/trunk/subversion/libsvn_repos/dump.c Wed Nov 13 16:13:24 2013
@@ -134,9 +134,9 @@ tracker_create(svn_revnum_t revision,
  * we encounter a new tree change.
  */
 static void
-tracker__trim(path_tracker_t *tracker,
-              const char *path,
-              svn_boolean_t allow_exact_match)
+tracker_trim(path_tracker_t *tracker,
+             const char *path,
+             svn_boolean_t allow_exact_match)
 {
   /* remove everything that is unrelated to PATH.
      Note that TRACKER->STACK is depth-ordered,
@@ -176,7 +176,7 @@ tracker_lookup(const char **orig_path,
                const char *path,
                apr_pool_t *pool)
 {
-  tracker__trim(tracker, path, TRUE);
+  tracker_trim(tracker, path, TRUE);
   if (tracker->depth == 0)
     {
       /* no tree changes -> paths are the same as in the previous rev. */
@@ -230,11 +230,11 @@ tracker_lookup(const char **orig_path,
    will have undefined values.
  */
 static path_tracker_entry_t *
-tracker__add_entry(path_tracker_t *tracker,
-                   const char *path)
+tracker_add_entry(path_tracker_t *tracker,
+                  const char *path)
 {
   path_tracker_entry_t *entry;
-  tracker__trim(tracker, path, FALSE);
+  tracker_trim(tracker, path, FALSE);
 
   if (tracker->depth == tracker->stack->nelts)
     {
@@ -263,7 +263,7 @@ tracker_path_copy(path_tracker_t *tracke
                   const char *copyfrom_path,
                   svn_revnum_t copyfrom_rev)
 {
-  path_tracker_entry_t *entry = tracker__add_entry(tracker, path);
+  path_tracker_entry_t *entry = tracker_add_entry(tracker, path);
 
   svn_stringbuf_set(entry->copyfrom_path, copyfrom_path);
   entry->copyfrom_rev = copyfrom_rev;
@@ -276,7 +276,7 @@ static void
 tracker_path_add(path_tracker_t *tracker,
                  const char *path)
 {
-  path_tracker_entry_t *entry = tracker__add_entry(tracker, path);
+  path_tracker_entry_t *entry = tracker_add_entry(tracker, path);
 
   svn_stringbuf_setempty(entry->copyfrom_path);
   entry->copyfrom_rev = SVN_INVALID_REVNUM;
@@ -301,7 +301,7 @@ static void
 tracker_path_delete(path_tracker_t *tracker,
                     const char *path)
 {
-  path_tracker_entry_t *entry = tracker__add_entry(tracker, path);
+  path_tracker_entry_t *entry = tracker_add_entry(tracker, path);
 
   svn_stringbuf_setempty(entry->copyfrom_path);
   entry->copyfrom_rev = SVN_INVALID_REVNUM;