Recovered from cvs revision 2007-10-04 14:26:00

This commit is contained in:
2007-10-04 23:26:00 +00:00
parent aac112ab21
commit 78ec0d59a4
6 changed files with 100 additions and 42 deletions

View File

@ -44,9 +44,8 @@ namespace ase.net
protected bool Sleep(string name, Argument[] args, Return ret)
{
System.Threading.Thread.Sleep((int)(args[0].LongValue*1000));
ret.LongValue = 0;
return true;
System.Threading.Thread.Sleep((int)(args[0].LongValue*1000));
return ret.Set(0);
}
protected override int OpenSource(ASE.Net.StdAwk.Source source)