Bug in js_string
Brought to you by:
leon_kon
If source line contains '\' char (e.g. path: "c:\\Directory", parser will truncate it: "c:\Director" will in result.
Bug is in stop-loop condition (line 1827 of v.1.06 source):
until j >= length(s);
must be
until j > length(s);
Best regards,
Andrew G. Khodotov.
I met the same problem!
I think the fix which Andrew provided is right!
fixed, thanks
about the removing \\ - it isn't a bug, it is correct.