From ec4803b7d05ae92869b7210235590963f1287f77 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Mon, 7 Nov 2016 17:17:15 -0500
Subject: [PATCH] use logical "and" instead of multiply for clarity

---
 pd/src/x_connective.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pd/src/x_connective.c b/pd/src/x_connective.c
index 4576e2db0..5aaade46b 100644
--- a/pd/src/x_connective.c
+++ b/pd/src/x_connective.c
@@ -489,7 +489,7 @@ static void *select_new(t_symbol *s, int argc, t_atom *argv)
                 s = 1;
             }
         }
-        x->x_mixed = f * s;
+        x->x_mixed = f && s;
         x->x_rejectout = outlet_new(&x->x_obj, &s_float);
         return (x);
     }
-- 
GitLab