remove 'else' and '=>' bindings from 'mzscheme'
svn: r7859 original commit: 8930f31115e68e4858cd742aeb4ad69b3a1698f1
This commit is contained in:
parent
590e5c012f
commit
85ce73089c
|
@ -191,11 +191,10 @@
|
|||
key
|
||||
content)))
|
||||
|
||||
(define (index-section tag)
|
||||
(define (index-section #:tag [tag #f])
|
||||
(make-unnumbered-part
|
||||
#f
|
||||
`((part , (or tag
|
||||
(make-generated-tag))))
|
||||
`((part ,(or tag "doc-index")))
|
||||
'("Index")
|
||||
'index
|
||||
null
|
||||
|
|
|
@ -998,16 +998,15 @@
|
|||
(map (lambda (f)
|
||||
(list 'accessor name '- (field-name f)))
|
||||
fields)
|
||||
(if immutable?
|
||||
null
|
||||
(filter
|
||||
values
|
||||
(map (lambda (f)
|
||||
(if (and (pair? (car f))
|
||||
(memq '#:mutable (car f)))
|
||||
(list 'mutator 'set- name '- (field-name f) '!)
|
||||
#f))
|
||||
fields)))))))])
|
||||
(filter
|
||||
values
|
||||
(map (lambda (f)
|
||||
(if (or (not immutable?)
|
||||
(and (pair? (car f))
|
||||
(memq '#:mutable (car f))))
|
||||
(list 'mutator 'set- name '- (field-name f) '!)
|
||||
#f))
|
||||
fields))))))])
|
||||
(if (pair? name)
|
||||
(to-element (list just-name
|
||||
(make-just-context (cadr name) stx-id)))
|
||||
|
|
|
@ -178,11 +178,10 @@ section by @scheme[decode]. The @scheme[word]s serve as both the keys
|
|||
and as the rendered forms of the keys.}
|
||||
|
||||
|
||||
@defproc[(index-section [tag string?])]{
|
||||
@defproc[(index-section [#:tag tag (or/c false/c string?) "doc-index"])]{
|
||||
|
||||
Produces a section that shows the index the enclosing document. The
|
||||
@scheme[tag] is required to be unique for each index among a set of
|
||||
documents that share ``collected'' information.}
|
||||
optional @scheme[tag] argument is used as the index section's tag.}
|
||||
|
||||
|
||||
@; ------------------------------------------------------------------------
|
||||
|
|
|
@ -448,6 +448,21 @@ Like @scheme[defproc], but for a method within a @scheme[defclass] or
|
|||
Like @scheme[defproc*], but for a method within a @scheme[defclass] or
|
||||
@scheme[definterface] body.}
|
||||
|
||||
|
||||
@defform[(method class/intf-id method-id)]{
|
||||
|
||||
Creates a hyperlink to the method named by @scheme[method-id] in the
|
||||
class or interface named by @scheme[class/intf-id]. The hyperlink
|
||||
names the method, only; see also @scheme[xmethod].
|
||||
|
||||
For-label binding information is used with @scheme[class/intf-id], but
|
||||
not @scheme[method-id].}
|
||||
|
||||
@defform[(xmethod class/intf-id method-id)]{
|
||||
|
||||
Like @scheme[method], but the hyperlink shows both the method name and
|
||||
the containing class/interface.}
|
||||
|
||||
@; ------------------------------------------------------------------------
|
||||
@section{Various String Forms}
|
||||
|
||||
|
|
|
@ -94,4 +94,4 @@ information.
|
|||
@include-section["manual.scrbl"]
|
||||
@include-section["eval.scrbl"]
|
||||
|
||||
@index-section["scribble-index"]
|
||||
@index-section[]
|
||||
|
|
Loading…
Reference in New Issue
Block a user