scribble/manual: break defthing
output lines if needed
If the defined identifier plus contract doesn't fit on a single line, put them on separate lines. original commit: 77392cd02752d868e1c8363779ada62b9431df7f
This commit is contained in:
parent
db1a3b4139
commit
1665fec8c2
|
@ -479,7 +479,7 @@
|
|||
(list flow-spacer)
|
||||
(list flow-spacer flow-spacer
|
||||
flow-spacer flow-spacer))]
|
||||
[one-ok? (and (not (eq? mode 'new)) (tagged+arg-width . < . 60))])
|
||||
[one-ok? (and (not (eq? mode 'new)) (tagged+arg-width . < . (- max-proto-width 5)))])
|
||||
(list
|
||||
(make-table
|
||||
"prototype"
|
||||
|
@ -1030,6 +1030,7 @@
|
|||
|
||||
(define (*defthing kind link? stx-ids names form? result-contracts content-thunk
|
||||
[result-values (map (lambda (x) #f) result-contracts)])
|
||||
(define max-proto-width (current-display-width))
|
||||
(make-box-splice
|
||||
(cons
|
||||
(make-blockquote
|
||||
|
@ -1052,28 +1053,14 @@
|
|||
(if (block? result-contract)
|
||||
result-contract
|
||||
(make-omitable-paragraph (list result-contract)))]
|
||||
[total-width (+ (string-length (format "~a" name))
|
||||
[name+contract-width (+ (string-length (format "~a" name))
|
||||
3
|
||||
(block-width contract-block)
|
||||
(block-width contract-block))]
|
||||
[total-width (+ name+contract-width
|
||||
(if result-block
|
||||
(+ (block-width result-block) 3)
|
||||
0))])
|
||||
(append
|
||||
(list
|
||||
(list
|
||||
((if (zero? i) (add-background-label (or kind "value")) values)
|
||||
(make-flow
|
||||
(make-table-if-necessary
|
||||
"argcontract"
|
||||
(append
|
||||
(list
|
||||
(append
|
||||
(list
|
||||
(make-flow
|
||||
(list
|
||||
(make-omitable-paragraph
|
||||
(list
|
||||
(let ([target-maker
|
||||
0))]
|
||||
[thing-id (let ([target-maker
|
||||
(and link?
|
||||
((if form? id-to-form-target-maker id-to-target-maker)
|
||||
stx-id #t))])
|
||||
|
@ -1099,29 +1086,46 @@
|
|||
(lambda (libs) (make-thing-index-desc name libs))))
|
||||
tag
|
||||
ref-content)))
|
||||
content))))))
|
||||
(make-flow
|
||||
content))]
|
||||
[contract-on-first-line? (name+contract-width . < . max-proto-width)]
|
||||
[single-line? (and contract-on-first-line?
|
||||
(total-width . < . max-proto-width)
|
||||
(not (table? result-value)))])
|
||||
(append
|
||||
(list
|
||||
(make-omitable-paragraph
|
||||
(list
|
||||
spacer ":" spacer))))
|
||||
(make-flow (list contract-block)))
|
||||
(if (and result-value
|
||||
(and (total-width . < . 60)
|
||||
(not (table? result-value))))
|
||||
((if (zero? i) (add-background-label (or kind "value")) values)
|
||||
(make-table-if-necessary
|
||||
"argcontract"
|
||||
(append
|
||||
(list
|
||||
(to-flow (make-element #f (list spacer "=" spacer)))
|
||||
(make-flow (list result-block)))
|
||||
null)))))))))
|
||||
(if (and result-value
|
||||
(or (total-width . >= . 60)
|
||||
(table? result-value)))
|
||||
(list (list (list (make-table
|
||||
(append
|
||||
(list (list (make-omitable-paragraph
|
||||
(list thing-id))))
|
||||
(if contract-on-first-line?
|
||||
(list
|
||||
(to-flow (list spacer ":" spacer))
|
||||
(list contract-block))
|
||||
null)
|
||||
(if (and result-block single-line?)
|
||||
(list
|
||||
(to-flow (list spacer "=" spacer))
|
||||
(list result-block))
|
||||
null))))))))
|
||||
(if contract-on-first-line?
|
||||
null
|
||||
(list (list (make-table-if-necessary
|
||||
"argcontract"
|
||||
(list
|
||||
(list (to-flow (list spacer ":" spacer))
|
||||
(list contract-block)))))))
|
||||
(if (or single-line? (not result-block))
|
||||
null
|
||||
(list (list (make-table-if-necessary
|
||||
"argcontract"
|
||||
(list (list
|
||||
(to-flow (make-element #f (list spacer "=" spacer)))
|
||||
(make-flow (list result-block))))))))
|
||||
null))))))))
|
||||
(to-flow (list spacer "=" spacer))
|
||||
(list result-block))))))))))))))
|
||||
(content-thunk))))
|
||||
|
||||
(define (defthing/proc kind id contract descs)
|
||||
|
|
Loading…
Reference in New Issue
Block a user