You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hello, I am reading P.Norvig's book PAIP(written in 1991) and try to run it's code in sbcl.
There is a defun name "symbol" in auxfns.lisp. After (load "auxfns.lisp"), sbcl report " Lock on package COMMON-LISP violated when setting fdefinition of SYMBOL while in package COMMON-LISP-USER."
How to disable package lock for defun "symbol"?
Thank you very much!
Zach Beane
unread,
Oct 24, 2012, 9:25:40 PM10/24/12
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
One option is to choose the CONTINUE restart, which will ignore the
package lock.
Another option is to use SB-EXT:UNLOCK-PACKAGE.
Another is to avoide the conflict by making your own package which
shadows CL:SYMBOL.
Zach
Pascal J. Bourguignon
unread,
Oct 25, 2012, 9:29:21 AM10/25/12
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message