=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/builtin/print.c,v retrieving revision 1.21 retrieving revision 1.25 diff -u -p -r1.21 -r1.25 --- OpenXM_contrib2/asir2000/builtin/print.c 2006/02/01 07:29:29 1.21 +++ OpenXM_contrib2/asir2000/builtin/print.c 2011/06/16 08:17:15 1.25 @@ -45,11 +45,12 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/builtin/print.c,v 1.20 2005/12/10 14:14:15 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/builtin/print.c,v 1.24 2007/11/22 05:14:48 ohara Exp $ */ #include "ca.h" #include "parse.h" +void Pprintf(); void Pprint(); void Pquotetolist(); void Pobjtoquote(); @@ -57,6 +58,7 @@ void Peval_variables_in_quote(); void Pset_print_function(); struct ftab print_tab[] = { + {"printf",Pprintf,-99999999}, {"print",Pprint,-2}, {"objtoquote",Pobjtoquote,1}, {"quotetolist",Pquotetolist,1}, @@ -67,11 +69,43 @@ struct ftab print_tab[] = { extern int I_am_server; +int wfep_mode; + +void Pprintf(NODE arg,pointer *rp) +{ + STRING s; + if ( arg ) { + Psprintf(arg,&s); + /* engine for wfep */ + if ( wfep_mode ) { + print_to_wfep(s); + }else { + printexpr(CO,s); + fflush(asir_out); + } + } + *rp = 0; + return; +} + void Pprint(NODE arg,pointer *rp) { Obj obj; + STRING nl; Q opt; + /* engine for wfep */ + if ( wfep_mode ) { + if ( arg ) { + print_to_wfep((Obj)ARG0(arg)); + if ( !NEXT(arg) || ARG1(arg) ) { + MKSTR(nl,"\r\n"); + print_to_wfep((Obj)nl); + } + } + *rp = 0; + return; + } if ( arg ) { obj = (Obj)ARG0(arg); if ( NEXT(arg) ) { @@ -131,7 +165,7 @@ void fnodetotree(FNODE f,LIST *rp) if ( !f ) { MKSTR(head,"internal"); - n = mknode(2,head,0); + n = mknode(2,head,NULLP); MKLIST(*rp,n); return; }