--- parser3/src/main/execute.C 2001/03/19 21:59:17 1.120 +++ parser3/src/main/execute.C 2001/03/21 14:06:45 1.122 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: execute.C,v 1.120 2001/03/19 21:59:17 paf Exp $ + $Id: execute.C,v 1.122 2001/03/21 14:06:45 paf Exp $ */ #include "code.h" @@ -223,7 +223,7 @@ void Request::execute(const Array& ops) { VString *vstring=static_cast(ops.quick_get(++i)); log_printf(" \"%s\"", vstring->string().cstr()); - write(vstring->string()); + write_no_lang(vstring->string()); break; } @@ -349,12 +349,10 @@ void Request::execute(const Array& ops) // some stateless_object derivates with constructors if(called_class==table_class)///called_class->name()==TABLE_CLASS_NAME) self=NEW VTable(pool()); - else /*if(called_class->name()==ENV_CLASS_NAME) - self=NEW VEnv(pool()); - else */ // stateful object + else // stateful object self=NEW VObject(pool(), *called_class); frame->write(*self, - String::Untaint_lang::NO // not used, always an object, not string + String::UL_NO // not used, always an object, not string ); } else self=&frame->junction.self; // no, static or simple dynamic call