Page 1 of 1

Bug in init.lsp from 7300

Posted: Sun Nov 09, 2003 9:02 am
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))

Posted: Sun Nov 09, 2003 2:56 pm
by Lutz
thanks for catching this too, I probably can throw this out completely, now that 7300 is out.

Lutz