Re: Phix 1.0.2 uploaded
- Posted by petelomax Mar 21, 2023
- 2039 views
Oh blimey, this fell of the radar, sorry. You're quite right in that installation is left woefully incomplete.
The fix is trivial, around line 275 of builtins/cffi.e replace
-- if match("//",s,sidx)!=sidx then exit end if if s[sidx+1]!=sidx then exit end if
with
-- if match("//",s,sidx)!=sidx then exit end if -- if s[sidx+1]!=sidx then exit end if if s[sidx+1]!='/' then exit end if
And then re-run pw pdemo. I possibly should/might need to ship a 1.0.3, just for this, but obviously I hope not.