change Scribble to complain about colliding tags
svn: r8025 original commit: fd1de94a484332ae57d648b83b32038011bace1b
This commit is contained in:
parent
8e3ed2fcf4
commit
121dc93911
|
@ -119,11 +119,11 @@
|
||||||
(hash-table-for-each (collect-info-ht p-ci)
|
(hash-table-for-each (collect-info-ht p-ci)
|
||||||
(lambda (k v)
|
(lambda (k v)
|
||||||
(when (cadr k)
|
(when (cadr k)
|
||||||
(hash-table-put! (collect-info-ht ci)
|
(collect-put! ci
|
||||||
(if prefix
|
(if prefix
|
||||||
(convert-key prefix k)
|
(convert-key prefix k)
|
||||||
k)
|
k)
|
||||||
v)))))))
|
v)))))))
|
||||||
|
|
||||||
(define/private (convert-key prefix k)
|
(define/private (convert-key prefix k)
|
||||||
(case (car k)
|
(case (car k)
|
||||||
|
|
|
@ -780,7 +780,7 @@
|
||||||
(table? (car (splice-run box)))
|
(table? (car (splice-run box)))
|
||||||
(eq? 'boxed (table-style (car (splice-run box)))))
|
(eq? 'boxed (table-style (car (splice-run box)))))
|
||||||
(error 'deftogether "element is not a boxing splice containing a single table: ~e" box))
|
(error 'deftogether "element is not a boxing splice containing a single table: ~e" box))
|
||||||
(list (make-flow (list (make-table #f (table-flowss (car (splice-run box))))))))
|
(list (make-flow (list (make-table "together" (table-flowss (car (splice-run box))))))))
|
||||||
boxes))
|
boxes))
|
||||||
(parameterize ([current-variable-list
|
(parameterize ([current-variable-list
|
||||||
(apply append (map box-splice-var-list boxes))])
|
(apply append (map box-splice-var-list boxes))])
|
||||||
|
|
|
@ -253,6 +253,10 @@
|
||||||
background-color: #E8E8FF;
|
background-color: #E8E8FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.together {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.prototype td {
|
.prototype td {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,9 +15,12 @@
|
||||||
|
|
||||||
|
|
||||||
(define (collect-put! ci key val)
|
(define (collect-put! ci key val)
|
||||||
(hash-table-put! (collect-info-ht ci)
|
(let ([ht (collect-info-ht ci)])
|
||||||
key
|
(when (hash-table-get ht key #f)
|
||||||
val))
|
(fprintf (current-error-port)
|
||||||
|
"WARNING: collected information for key multiple times: ~e\n"
|
||||||
|
key))
|
||||||
|
(hash-table-put! ht key val)))
|
||||||
|
|
||||||
(define (resolve-get/where part ri key)
|
(define (resolve-get/where part ri key)
|
||||||
(let ([key (tag-key key ri)])
|
(let ([key (tag-key key ri)])
|
||||||
|
|
|
@ -49,7 +49,7 @@ EOS
|
||||||
|
|
||||||
@item{Run @exec{setup-plt} to build your documentation. For a
|
@item{Run @exec{setup-plt} to build your documentation. For a
|
||||||
collection, optionally supply @Flag{l} followed by the
|
collection, optionally supply @Flag{l} followed by the
|
||||||
collection name to limit the build process to the collection.}
|
collection name to limit the build process to that collection.}
|
||||||
|
|
||||||
@item{The generated documentation is
|
@item{The generated documentation is
|
||||||
@filepath{compiled/doc/manual/index.html} within the
|
@filepath{compiled/doc/manual/index.html} within the
|
||||||
|
@ -57,9 +57,9 @@ EOS
|
||||||
|
|
||||||
If you want the output to be relative to the PLT Scheme
|
If you want the output to be relative to the PLT Scheme
|
||||||
documentation directory (which is recommend only for those who
|
documentation directory (which is recommend only for those who
|
||||||
produce the ``official'' PLT Scheme distribution), add the
|
produce the ``official'' PLT Scheme distribution, and even
|
||||||
@scheme['main-doc] option to the @scheme[scribblings]
|
then only in certain cases), add the @scheme['main-doc] option
|
||||||
definition in @filepath{info.ss}.}
|
to the @scheme[scribblings] definition in @filepath{info.ss}.}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,14 +92,14 @@ one must be present. No spaces are allowed between
|
||||||
A @nonterm{cmd} or @nonterm{datum} is a Scheme datum, while a
|
A @nonterm{cmd} or @nonterm{datum} is a Scheme datum, while a
|
||||||
@nonterm{text-body} is itself in text mode.
|
@nonterm{text-body} is itself in text mode.
|
||||||
|
|
||||||
The expansion of a @litchar["@"] form into Scheme code is
|
The expansion of @litchar["@"]@nonterm{cmd} into Scheme code is
|
||||||
|
|
||||||
@schemeblock[
|
@schemeblock[
|
||||||
@nonterm{cmd}
|
#, @nonterm{cmd}
|
||||||
]
|
]
|
||||||
|
|
||||||
if neither @litchar["["] @litchar["]"] nor @litchar["{"] @litchar["}"]
|
When either @litchar["["] @litchar["]"] or @litchar["{"] @litchar["}"]
|
||||||
are used, otherwise
|
are used, the expansion is
|
||||||
|
|
||||||
@schemeblock[
|
@schemeblock[
|
||||||
(#, @nonterm{cmd} #, @kleenestar{@nonterm{datum}} #, @kleenestar{@nonterm{parsed-body}})
|
(#, @nonterm{cmd} #, @kleenestar{@nonterm{datum}} #, @kleenestar{@nonterm{parsed-body}})
|
||||||
|
|
|
@ -662,7 +662,7 @@ output, a hyperlink underline appears even when the mouse is not over
|
||||||
the link.}
|
the link.}
|
||||||
|
|
||||||
@; ------------------------------------------------------------------------
|
@; ------------------------------------------------------------------------
|
||||||
@section{Indexing}
|
@section[#:tag "manual-indexing"]{Indexing}
|
||||||
|
|
||||||
@defform[(indexed-scheme datum ...)]{
|
@defform[(indexed-scheme datum ...)]{
|
||||||
|
|
||||||
|
@ -801,7 +801,7 @@ correspond to the documented name of the binding and the primary
|
||||||
modules that export the documented name (but this list is not
|
modules that export the documented name (but this list is not
|
||||||
exhaustive, because new modules can re-export the binding).}
|
exhaustive, because new modules can re-export the binding).}
|
||||||
|
|
||||||
@defstruct[(procedure-index-desc exported-index-desc) ()]{
|
@defstruct[(form-index-desc exported-index-desc) ()]{
|
||||||
|
|
||||||
Indicates that the index entry corresponds to the definition of a
|
Indicates that the index entry corresponds to the definition of a
|
||||||
syntactic form via @scheme[defform] and company.}
|
syntactic form via @scheme[defform] and company.}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user