#296: SLIME fails to initialize with (SETF DOCUMENTATION) undefined -------------------------+-------------------------------------------------- Reporter: mevenson | Owner: ehuelsmann Type: defect | Status: new Priority: blocker | Milestone: 1.2.0 Component: interpreter | Version: 1.2.0-dev Keywords: autoloader | -------------------------+--------------------------------------------------
Comment(by mevenson):
As suggested by Rudi, a workaround until we implement the SETF autoloader would be to insert the following form in the compilation unit before the place where the error is raised:
{{{ #+abcl (eval-when (:load-toplevel :compile-toplevel :execute) (documentation 'car 'function)) ;; workaround (SETF DOCUMENTATION) autoloader bug }}}