closes PR 11522

This commit is contained in:
Robby Findler 2010-12-10 06:37:33 -06:00
parent de4daa8d81
commit b902cb5455

View File

@ -354,6 +354,9 @@
(let ([char (send text get-character pos)])
(case char
[(#\>) #f]
[(#\/) (if last-space
(loop (- pos 1) last-space)
#f)]
[(#\<)
(if (or (char=? (send text get-character (+ pos 1)) #\/)
(char=? (send text get-character (+ pos 1)) #\>))