Page 1 of 1

(parse) in newlisp mode

Posted: Sat Apr 15, 2006 9:57 pm
by Dmi

Code: Select all

> (parse "\"abc")
string token too long in function parse : "abcd1P\t\008"
I have a suspection that when using internal parser, there is no range range checking for an input string.
Possible this could be dangerous...

Posted: Sun Apr 16, 2006 2:02 am
by Lutz
Parsing stops after the end of the string (4 chars in your example). This is a display problem, how the error gets reported and will be corrected.

Lutz