From 0153df20e27430c22ab61641e8dec3287e3d1ec0 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Wed, 3 Sep 1997 01:08:07 +0000 Subject: [PATCH] Add documentation methods for the CMUCL random-documentation extension. --- pcl/cmucl-documentation.lisp | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/pcl/cmucl-documentation.lisp b/pcl/cmucl-documentation.lisp index 4f0cacf24..824f517b3 100644 --- a/pcl/cmucl-documentation.lisp +++ b/pcl/cmucl-documentation.lisp @@ -4,7 +4,7 @@ ;;; the public domain, and is provided 'as is'. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/cmucl-documentation.lisp,v 1.1 1997/08/30 18:47:40 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/cmucl-documentation.lisp,v 1.2 1997/09/03 01:08:07 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -104,3 +104,16 @@ (defmethod (setf documentation) (new-value (x symbol) (doc-type (eql 'variable))) (setf (ext:info variable documentation x) new-value)) + +;;; CMUCL random documentation. +(defmethod documentation ((x symbol) (doc-type symbol)) + (cdr (assoc doc-type + (values (ext:info random-documentation stuff x))))) + +(defmethod (setf documentation) (new-value (x symbol) (doc-type symbol)) + (let ((pair (assoc doc-type (ext:info random-documentation stuff x)))) + (if pair + (setf (cdr pair) new-value) + (push (cons doc-type new-value) + (ext:info random-documentation stuff x)))) + new-value) -- GitLab