racket / drracket

DrRacket, IDE for Racket
http://www.racket-lang.org/
Other
447 stars 94 forks source link

font size inconsistency #463

Closed sorawee closed 3 years ago

sorawee commented 3 years ago

Consider:

#lang racket
(add1 (let loop ([n 5])
        (cond
          [(zero? n) (/ 1 0)]
          [else (add1 (loop (sub1 n)))])))

The backtrace displays:

Screen Shot 2021-02-03 at 8 49 41 PM

Notice that

It's unclear what is the desired outcome, but it definitely should not be inconsistent like this.

rfindler commented 3 years ago

They should all be like the first one, IMO.