diff --git a/pd/src/g_canvas.c b/pd/src/g_canvas.c
index f504277c35c0e17dd61f49489044faf8ca7aaac6..61714dd33fd4985fa1fbc998ed39c6a6f7148ac5 100644
--- a/pd/src/g_canvas.c
+++ b/pd/src/g_canvas.c
@@ -2464,7 +2464,7 @@ static void canvas_abpush(t_canvas *x, t_symbol *s, int argc, t_atom *argv)
     t_canvas *c = canvas_getcurrent();
     t_symbol *name = argv[0].a_w.w_symbol;
     t_binbuf *source = binbuf_new();
-    x->gl_env = 0xF1A6; //to save it as a root canvas
+    x->gl_env = dummy_canvas_env(canvas_getdir(x)->s_name); //to save it as a root canvas
     mess1(&((t_text *)x)->te_pd, gensym("saveto"), source);
     x->gl_env = 0;
 
@@ -2559,7 +2559,8 @@ static void *ab_new(t_symbol *s, int argc, t_atom *argv)
         }
         else
         {
-            error("ab_new: can't insantiate ab within itself\n cycle: %s", res);
+            if(!glist_amreloadingabstractions)
+                error("ab_new: can't insantiate ab within itself\n cycle: %s", res);
             newest = 0;
         }
     }
diff --git a/pd/src/g_graph.c b/pd/src/g_graph.c
index d93cd3db6b7c81b2392f78114bb3c87407d9458a..dafe3e7098cfcc239224eda569d80f9f922dd94e 100644
--- a/pd/src/g_graph.c
+++ b/pd/src/g_graph.c
@@ -202,6 +202,8 @@ int canvas_hasarray(t_canvas *x)
 /* JMZ: emit a closebang message */
 void canvas_closebang(t_canvas *x);
 
+void canvas_dirtyclimb(t_canvas *x, int n);
+
     /* delete an object from a glist and free it */
 void glist_delete(t_glist *x, t_gobj *y)
 {