(parse) in newlisp mode

For the Compleat Fan
Locked
Dmi
Posts: 408
Joined: Sat Jun 04, 2005 4:16 pm
Location: Russia
Contact:

(parse) in newlisp mode

Post 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...
WBR, Dmi

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post 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

Locked