set minimum line width to accept 100 lines

This commit is contained in:
Jon Rafkind 2010-11-03 17:59:40 -06:00
parent c3111c425b
commit d1e44d0cc8

View File

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