about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-08 04:18:50 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-08 04:18:50 -0800
commit860895edc62456d192c0827e8f76c98c01cfe665 (patch)
tree91158579ba4bd67efba00a6ded0db2802b5a3a3d
parent34068eb30b1795d14d206f7ae4f1ce50accb2529 (diff)
downloadmu-860895edc62456d192c0827e8f76c98c01cfe665.tar.gz
3648
-rw-r--r--073wait.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/073wait.cc b/073wait.cc
index 36ae1774..a243982b 100644
--- a/073wait.cc
+++ b/073wait.cc
@@ -221,7 +221,7 @@ case GET_LOCATION: {
 bool is_mu_location(reagent/*copy*/ x) {
   if (!canonize_type(x)) return false;
   if (!x.type) return false;
-  if (x.type->right) return false;
+  if (!x.type->atom) return false;
   return x.type->value == get(Type_ordinal, "location");
 }