[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
documentation strings in BOA constructors ?
- To: common-lisp@SU-AI.ARPA
- Subject: documentation strings in BOA constructors ?
- From: "S. Sridhar" <sridhar%tekecs.tek.csnet@CSNET-RELAY.ARPA>
- Date: Tue, 19 Aug 86 14:23:23 PDT
Suppose you have :
(defstruct (point (:constructor make-point (x y) "this makes a point"))
x y)
There is no mention on page315-316 in CltL about having
documentation strings for such functions.
Our implementation does:
(documentation 'make-point 'function) => nil.
What should the "correct" behaviour be?
--sridhar