remove all the bous exported-from annotations in the reference

svn: r7739

original commit: 9e70499c8cf319e2cc21e9369ba1895771eba83c
This commit is contained in:
Matthew Flatt 2007-11-15 18:14:59 +00:00
parent c6ee14bc8e
commit 6e8ba58124
3 changed files with 7 additions and 3 deletions

View File

@ -292,7 +292,8 @@
(define/public (render ds fns ri)
(map (lambda (d fn)
(printf " [Output to ~a]\n" fn)
(when #f
(printf " [Output to ~a]\n" fn))
(with-output-to-file fn
#:exists 'truncate/replace
(lambda ()

View File

@ -6,7 +6,8 @@
(provide-structs
[exported-index-desc ([name symbol?]
[from-libs (listof module-path?)])]
[(method-index-desc exported-index-desc) ([method-name symbol?])]
[(method-index-desc exported-index-desc) ([method-name symbol?]
[class-tag tag?])]
[(procedure-index-desc exported-index-desc) ()]
[(thing-index-desc exported-index-desc) ()]
[(struct-index-desc exported-index-desc) ()]

View File

@ -713,7 +713,9 @@
(make-method-index-desc
(syntax-e within-id)
libs
mname)))))
mname
(register-scheme-definition
within-id #t))))))
tag)
(car content)))
(*method (car prototype) within-id))))]