--- parser3/src/main/execute.C 2002/08/13 15:55:42 1.252 +++ parser3/src/main/execute.C 2002/08/14 14:18:28 1.253 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char* IDENT_EXECUTE_C="$Date: 2002/08/13 15:55:42 $"; +static const char* IDENT_EXECUTE_C="$Date: 2002/08/14 14:18:28 $"; #include "pa_opcode.h" #include "pa_array.h" @@ -824,7 +824,7 @@ void Request::execute(const Array& ops) case OP_IS: { b=POP(); a=POP(); - value=NEW VBool(pool(), a->as(b->as_string().cstr())!=0); + value=NEW VBool(pool(), a->is(b->as_string().cstr(), false)); PUSH(value); break; }