We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eab2d5 commit 19915eeCopy full SHA for 19915ee
redex-pict-lib/redex/private/core-layout.rkt
@@ -431,11 +431,13 @@
431
(- next-lw-line line)
432
new-lw-col
433
new-lw-col-span)
434
- 'spring
435
- (build-lw to-wrap2 next-lw-line 0 (+ new-lw-col new-lw-col-span) 0)
436
- (if after-next-lw
437
- (cons next-lw (loop after-next-lw next-line next-column))
438
- '()))))])))))
+ (append
+ (cond [(= line next-lw-line) '(spring)]
+ [else '()])
+ (list (build-lw to-wrap2 next-lw-line 0 (+ new-lw-col new-lw-col-span) 0))
+ (if after-next-lw
439
+ (cons next-lw (loop after-next-lw next-line next-column))
440
+ '())))))])))))
441
442
(define (extract-pieces-to-wrap who lst)
443
(let ([fst (car lst)])
0 commit comments