add a few comments to scribble-index

svn: r7740

original commit: 79237377439ae2856047f16bccc23da7222e3940
This commit is contained in:
Matthew Flatt 2007-11-15 18:19:57 +00:00
parent 6e8ba58124
commit 96ea4eba63

View File

@ -17,7 +17,12 @@
xref-index
(struct-out entry))
(define-struct entry (words content link-key desc))
(define-struct entry (words ; list of strings: main term, sub-term, etc.
content ; Scribble content to the index label
link-key ; for generating a Scribble link
desc)) ; further info that depends on the kind of index entry
;; Private:
(define-struct xrefs (renderer ri))
;; ----------------------------------------