[racket-dev] DrRacket display bug

From: Evgeny Odegov (oev-racket at sibmail.com)
Date: Thu Sep 26 23:46:02 EDT 2013

To reproduce:
Generate file with the following script (filepath doesn't matter) and open
in DrRacket.

#lang racket/base

(require racket/file math/number-theory)

(with-output-to-file "d:/big-numbers.rkt"
  (λ ()
    (define x (factorial 5000))
    (displayln "#lang racket")
    (displayln "(define bignumber-list (list ")
    (for ([n 2])
      (displayln x))
    (display "))")
    (flush-output)))


Result on my machine: http://postimg.org/image/5xqo3bcvv/full/

'Reindent All' (Ctrl+I) makes view normal.


Posted on the dev mailing list.