bugfix as noticed by Stephen De Gabrielle

svn: r7328
This commit is contained in:
Robby Findler 2007-09-13 18:37:48 +00:00
parent 965c70b826
commit 00c9f0b1a1

View File

@ -370,10 +370,9 @@
(define init-wordbreak-map
(λ (map)
(let ([v (send map get-map #\-)])
(send map set-map
#\-
'(line)))))
(send map set-map #\- '(line selection))
(send map set-map #\: '(line selection))))
(define wordbreak-map (make-object editor-wordbreak-map%))
(define (get-wordbreak-map) wordbreak-map)
(init-wordbreak-map wordbreak-map)