fix missing argument
closes PR 13429 Merge to 5.3.2 original commit: 9b1b15d110ba77f36e3e9904e20109d78fa6ca62
This commit is contained in:
parent
241263b9aa
commit
c1e98b7991
|
@ -80,7 +80,7 @@
|
|||
|
||||
(define (show-term stx partition)
|
||||
(define-values (datum flat=>stx stx=>flat)
|
||||
(table stx partition 0 'always))
|
||||
(table stx partition 0 'always #t))
|
||||
(define identifier-list
|
||||
(filter identifier? (hash-map stx=>flat (lambda (k v) k))))
|
||||
(define (pp-size-hook obj display-like? port)
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
[(and partition (identifier? obj))
|
||||
(when (and (eq? suffixopt 'all-if-over-limit)
|
||||
(> (send/i partition partition<%> count) limit))
|
||||
(call-with-values (lambda () (table stx partition #f 'always))
|
||||
(call-with-values (lambda () (table stx partition #f 'always abbrev?))
|
||||
escape))
|
||||
(let ([lp-datum (make-identifier-proxy obj)])
|
||||
(hash-set! flat=>stx lp-datum obj)
|
||||
|
|
Loading…
Reference in New Issue
Block a user