about summary refs log tree commit diff stats
path: root/071recipe.cc
diff options
context:
space:
mode:
Diffstat (limited to '071recipe.cc')
-rw-r--r--071recipe.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/071recipe.cc b/071recipe.cc
index 9d77869d..a3a258c7 100644
--- a/071recipe.cc
+++ b/071recipe.cc
@@ -277,9 +277,7 @@ bool is_mu_recipe(const reagent& r) {
   if (!r.type) return false;
   if (r.type->atom)
     return r.type->name == "recipe-literal";
-  if (!r.type->left->atom) return false;
-  if (r.type->left->name == "recipe") return true;
-  return false;
+  return r.type->left->atom && r.type->left->name == "recipe";
 }
 
 :(scenario copy_typecheck_recipe_variable)