X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fmain.c;h=6645f6e4564f72f72f67d1bea7949761452be844;hb=58a5ffdfec139a0c9d399f603b77a764ae8607f7;hp=0819cc9abd0cea517935ad69c786fc8779a9a747;hpb=3eadff410d2d08246d6f195ef209ed9d88c99be5;p=muddle-interpreter.git diff --git a/src/main.c b/src/main.c index 0819cc9..6645f6e 100644 --- a/src/main.c +++ b/src/main.c @@ -105,9 +105,9 @@ main () // Eval the thing cf->prevcst = cst; push_frame (eval, new_tuple (st.pos, 1), 0); - while (cf->cont.fn) + while (cf->cont.val.fn) { - cf->cont.fn (); + cf->cont.val.fn (); } // Print the thing print_object (&ret);