diff --git a/.gdbinit b/.gdbinit index 4ca7c2fa19..268a996917 100644 --- a/.gdbinit +++ b/.gdbinit @@ -797,11 +797,6 @@ define nd_new end -define nd_cfnc - printf "%su1.cfunc%s: ", $color_highlite, $color_end - p ($arg0).u1.cfunc -end - define nd_argc printf "%su2.argc%s: ", $color_highlite, $color_end p ($arg0).u2.argc diff --git a/node.h b/node.h index cffb174aa5..7c859b3ac0 100644 --- a/node.h +++ b/node.h @@ -248,7 +248,6 @@ typedef struct RNode { struct RNode *node; ID id; VALUE value; - VALUE (*cfunc)(ANYARGS); ID *tbl; } u1; union { @@ -350,7 +349,6 @@ typedef struct RNode { #define nd_noex u3.id #define nd_defn u3.node -#define nd_cfnc u1.cfunc #define nd_argc u2.argc #define nd_cpath u1.node