monotone-commits-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Monotone-commits-diffs] net.venge.monotone.issue-120: fd13237b918b576b


From: code
Subject: [Monotone-commits-diffs] net.venge.monotone.issue-120: fd13237b918b576b21ff9757969796c923a9dc8f
Date: Thu, 24 Feb 2011 17:30:46 +0100 (CET)

revision:            fd13237b918b576b21ff9757969796c923a9dc8f
date:                2011-02-24T13:45:26
author:              Richard Hopkins <address@hidden>
branch:              net.venge.monotone.issue-120
changelog:
revision_summary: whitespace fixes for calls to node_summary_fn

I forgot to change the whitespace when I changed all of the
friendly_node_summary calls to node_summary_fn.

manifest:
format_version "1"

new_manifest [85e5762dd6640f7bb9dcf4657285ee7bc97fdcdc]

old_revision [2e4450088b246a9fd74ee1c300e418db24e18b20]

patch "src/rev_output.cc"
 from [2a503773d632fdcd5629acd2404f0bdbec2fb4b0]
   to [935354bc3540215807d5ff4bf697afd2f0705bd6]
============================================================
--- src/rev_output.cc	2a503773d632fdcd5629acd2404f0bdbec2fb4b0
+++ src/rev_output.cc	935354bc3540215807d5ff4bf697afd2f0705bd6
@@ -205,33 +205,33 @@ revision_summary(revision_t const & rev,
       for (set<file_path>::const_iterator i = cs.nodes_deleted.begin();
             i != cs.nodes_deleted.end(); ++i)
         out << node_summary_fn(dropped, *i, dummy_file, dummy_key,
-                                     dummy_value);
+                               dummy_value);
 
       for (map<file_path, file_path>::const_iterator
             i = cs.nodes_renamed.begin();
             i != cs.nodes_renamed.end(); ++i)
         out << node_summary_fn(renamed, i->first, i->second,
-                                     dummy_key, dummy_value);
+                               dummy_key, dummy_value);
 
       for (set<file_path>::const_iterator i = cs.dirs_added.begin();
             i != cs.dirs_added.end(); ++i)
         out << node_summary_fn(added, *i, dummy_file, dummy_key,
-                                     dummy_value);
+                               dummy_value);
 
       for (map<file_path, file_id>::const_iterator i = cs.files_added.begin();
             i != cs.files_added.end(); ++i)
         out << node_summary_fn(added, i->first, dummy_file,
-                                     dummy_key, dummy_value);
+                               dummy_key, dummy_value);
 
       for (map<file_path, pair<file_id, file_id> >::const_iterator
               i = cs.deltas_applied.begin(); i != cs.deltas_applied.end(); ++i)
         out << node_summary_fn(patched, i->first, dummy_file,
-                                     dummy_key, dummy_value);
+                               dummy_key, dummy_value);
 
       for (map<pair<file_path, attr_key>, attr_value >::const_iterator
              i = cs.attrs_set.begin(); i != cs.attrs_set.end(); ++i)
         out << node_summary_fn(attr_set, i->first.first, dummy_file,
-                                     i->first.second, i->second);
+                               i->first.second, i->second);
 
       // FIXME: naming here could not be more inconsistent
       // the cset calls it attrs_cleared
@@ -242,7 +242,7 @@ revision_summary(revision_t const & rev,
       for (set<pair<file_path, attr_key> >::const_iterator
              i = cs.attrs_cleared.begin(); i != cs.attrs_cleared.end(); ++i)
         out << node_summary_fn(attr_unset, i->first, dummy_file,
-                                     i->second, dummy_value);
+                               i->second, dummy_value);
 
       out << '\n';
     }

reply via email to

[Prev in Thread] Current Thread [Next in Thread]