From: Peep P. <so...@us...> - 2004-06-20 14:12:19
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7678 Modified Files: dfuns.c Log Message: Uses runtime_dyn. Index: dfuns.c =================================================================== RCS file: /cvsroot/agd/server/src/dfuns.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- dfuns.c 14 Jun 2004 20:54:30 -0000 1.22 +++ dfuns.c 20 Jun 2004 14:12:11 -0000 1.23 @@ -346,7 +346,7 @@ if(!f) { char *buf = xmalloc(strlen(path) + 50); sprintf(buf, "can't open '%s' for reading!", path); - runtime(buf, 1); + runtime_dyn(buf); } file_str = NULL; @@ -367,7 +367,7 @@ /* Misc. */ void df_throw(void) { - runtime(fp->u.s, 0); + runtime(fp->u.s); pop_stack(); push_void(); } |