Seeking areas of little or weak documentation



On 3/23/2011 8:35 AM, Robert Dodier wrote:
>
> There isn't really any way to do it except by deriving it from
> the source code: for every user-visible function,
> scan the code to see which user-visible special (i.e., global)
> variables are referenced. That much could be automated.
It is called a cross-reference, and has been a standard feature of
some lisp systems for many years. (50?) For example, Allegro describes 
this..

http://www.franz.com/support/documentation/6.0/doc/cross-reference.htm

it appears that CMU CL  (and SBCL) have cross reference programs, but
I was unable to find detailed instructions on how to use them in a brief
Google search.

RJF