X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=mop.lisp;h=49c6d9789cc2da19d6644969a87391e2a9c81844;hb=ab662b1b37a8b859b607bee29ae4bdbc0075228e;hp=ae294581e60db4fdd9130e152308bff335931a4f;hpb=6fc109c25a642bd3d896700d50bca101a9096e47;p=hyperobject.git diff --git a/mop.lisp b/mop.lisp index ae29458..49c6d97 100644 --- a/mop.lisp +++ b/mop.lisp @@ -11,7 +11,7 @@ ;;;; in Text, HTML, and XML formats. This includes hyperlinking ;;;; capability and sub-objects. ;;;; -;;;; $Id: mop.lisp,v 1.61 2003/04/22 14:19:08 kevin Exp $ +;;;; $Id: mop.lisp,v 1.62 2003/04/25 04:53:52 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -84,7 +84,10 @@ (defclass hyperlink () ((name :type symbol :initform nil :initarg :name :reader name) - (lookup :type (or function symbol) :initform nil :initarg :lookup :reader lookup) + (lookup + ;; The type specifier seems to break sbcl + ;; :type (or function symbol) + :initform nil :initarg :lookup :reader lookup) (link-parameters :type list :initform nil :initarg :link-parameters :reader link-parameters)))