set minimum line width to accept 100 lines

original commit: d1e44d0cc85838e4183b2a10330d6a69ec72bfd2
This commit is contained in:
Jon Rafkind 2010-11-03 17:59:40 -06:00
parent 67d668337c
commit 729ebbabb0

View File

@ -3724,7 +3724,7 @@ designates the character that triggers autocompletion
(init-field [show-line-numbers? #t])
(define (number-space)
(number->string (max (* 10 (last-line)) 10)))
(number->string (max (* 10 (last-line)) 100)))
;; add an extra 0 so it looks nice
(define (number-space+1) (string-append (number-space) "0"))