about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-10 15:46:50 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-10 15:46:50 -0800
commite4b03c6f574ade8c3fe4df18b958da981ac58acb (patch)
tree383208c8477d0f371ccc348441f15559e0392c4d
parentbd7a19a59014c64a2c3e9c0b6af802b04991de6a (diff)
downloadmu-e4b03c6f574ade8c3fe4df18b958da981ac58acb.tar.gz
2645
-rw-r--r--043space.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/043space.cc b/043space.cc
index f8e6881b..145fd816 100644
--- a/043space.cc
+++ b/043space.cc
@@ -279,7 +279,7 @@ Warn_on_missing_default_space = true;
 bool contains_non_special_name(const recipe_ordinal r) {
   for (map<string, long long int>::iterator p = Name[r].begin(); p != Name[r].end(); ++p) {
     if (p->first.empty()) continue;
-    if (p->first.find("stash_") == 0) continue;  // generated by rewrite_stashes_to_text
+    if (p->first.find("stash_") == 0) continue;  // generated by rewrite_stashes_to_text (cross-layer)
     if (!is_special_name(p->first)) {
 //?       cerr << "  " << Recipe[r].name << ": " << p->first << '\n';
       return true;