diff --git a/src/g_text.c b/src/g_text.c
index c29fba941c30618d6347ab9b39b6f66351eb19af..4c1f2ebcfbd1417da15f0fbc5424bf9b148e35f7 100644
--- a/src/g_text.c
+++ b/src/g_text.c
@@ -146,16 +146,19 @@ void canvas_howputnew(t_canvas *x, int *connectp, int *xpixp, int *ypixp,
     int *indexp, int *totalp)
 {
     int xpix, ypix, indx = 0, nobj = 0, n2, x1, x2, y1, y2;
-	int connectme = 0;
 	t_gobj *selected;
 
+	/*
+	int connectme = 0;
 	if (x->gl_editor->e_selection &&
         !x->gl_editor->e_selection->sel_next &&
 		!sys_noautopatch) {
 			selected = x->gl_editor->e_selection->sel_what;
 			t_object *ob = pd_checkobject(&selected->g_pd);
     		connectme = (obj_noutlets(ob) ? 1 : 0);
-	}
+	}*/
+    int connectme = (x->gl_editor->e_selection &&
+        !x->gl_editor->e_selection->sel_next && !sys_noautopatch);
     if (connectme)
     {
         t_gobj *g, *selected = x->gl_editor->e_selection->sel_what;
diff --git a/src/m_pd.h b/src/m_pd.h
index f48f6ca817b1b6d12b2dc7024d9ff8ef29643a0a..0fc9b3ff20a794bc85e05ccec4e3bb88830cc11a 100644
--- a/src/m_pd.h
+++ b/src/m_pd.h
@@ -11,7 +11,7 @@ extern "C" {
 #define PD_MAJOR_VERSION 0
 #define PD_MINOR_VERSION 42
 #define PD_BUGFIX_VERSION 5
-#define PD_TEST_VERSION "extended-l2ork-20110419"
+#define PD_TEST_VERSION "extended-l2ork-20110420"
 
 /* old name for "MSW" flag -- we have to take it for the sake of many old
 "nmakefiles" for externs, which will define NT and not MSW */