Bug in init.lsp from 7300

For the Compleat Fan
Locked
HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Bug in init.lsp from 7300

Post by HPW »

I think this code:

Code: Select all

(if (> (last (sys-info)) 7207)
	(global 'defun))
Should be this:

Code: Select all

(if (> (nth 5 (sys-info)) 7207)
	(global 'defun))
Hans-Peter

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

Post by Lutz »

thanks for catching this too, I probably can throw this out completely, now that 7300 is out.

Lutz

Locked