Bug in tk-args

Q&A's, tips, howto's
Locked
HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Bug in tk-args

Post by HPW »

Instead of:

Code: Select all

(define (tk-args)
	(parse (tk "args" " ")))
must be

Code: Select all

(define (tk-args)
	(parse (tk "args") " "))
Hans-Peter

HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Post by HPW »

Bug is still in 7300 source distribution!
Hans-Peter

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

Post by Lutz »

thankyou for catching this, will be corrected in 3.01

Lutz

Locked