diff options
Diffstat (limited to 'lisp/language/tv-util.el')
-rw-r--r-- | lisp/language/tv-util.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/language/tv-util.el b/lisp/language/tv-util.el index 9407379e098..0323c9672a6 100644 --- a/lisp/language/tv-util.el +++ b/lisp/language/tv-util.el @@ -56,7 +56,8 @@ (compose-string string from (1+ from) (string ch ?\t))) (setq from (1+ from) prev-info info) (while (and (< from to) - (tai-viet-char-p (setq ch (aref string from)))) + (>= #xaa80 (setq ch (aref string from))) + (<= #xaaDF ch)) (setq info (aref tai-viet-glyph-info ch)) (if (and (eq info 'non-spacing) (eq prev-info 'non-spacing)) |