Re: euphoria error
- Posted by petelomax May 01, 2010
- 2241 views
dcole said...
When I put "E:\Program Files\edita\pw.exe" I get:
e:\eu\win32lib\win32lib.ew:4421
pText = Text
^ type error
Don Cole
Looks like you (/Phix) found a minor bug in win32lib.
I see:
4414 global function ansiUpper(sequence Text) -- added R. Stowasser 4415 sequence upperText 4416 atom pText 4417 4418 if sequence(Text) then 4419 pText = w32acquire_mem(0, Text) 4420 else 4421 pText = Text 4422 end if
and slightly earlier:
4392 global function ansiLower(object Text)
obviously ansiUpper's parameter should likewise be object, not sequence
I will try and do some tests on 0.70.4a in a couple of days time.
Regards, Pete