about summary refs log tree commit diff stats
path: root/044space_surround.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-25 20:47:42 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-25 20:47:42 -0800
commitd0e29245f9d37256093026d5080452db8a694136 (patch)
tree0f6658fa7dc42e7ac30c0641d1bcd562c332f3ec /044space_surround.cc
parentdcc060c7d4ef56b978beb34ddce8d8ffcec94fa6 (diff)
downloadmu-d0e29245f9d37256093026d5080452db8a694136.tar.gz
2707
Diffstat (limited to '044space_surround.cc')
-rw-r--r--044space_surround.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/044space_surround.cc b/044space_surround.cc
index 64047e5f..b9979256 100644
--- a/044space_surround.cc
+++ b/044space_surround.cc
@@ -39,12 +39,9 @@ long long int space_base(const reagent& x) {
 }
 
 long long int space_base(const reagent& x, long long int space_index, long long int base) {
-//?   trace(9999, "space") << "space-base: " << space_index << " " << base << end();
-  if (space_index == 0) {
+  if (space_index == 0)
     return base;
-  }
   long long int result = space_base(x, space_index-1, get_or_insert(Memory, base+/*skip length*/1))+/*skip refcount*/1;
-//?   trace(9999, "space") << "space-base: " << space_index << " " << base << " => " << result << end();
   return result;
 }