]> git.eshelyaron.com Git - emacs.git/commitdiff
(tai-viet-re): Include '-'.
authorKenichi Handa <handa@m17n.org>
Sun, 9 Dec 2007 12:39:55 +0000 (12:39 +0000)
committerKenichi Handa <handa@m17n.org>
Sun, 9 Dec 2007 12:39:55 +0000 (12:39 +0000)
(tai-viet-glyph-info): Handle '-'.

lisp/language/tv-util.el

index b8a33fac3e0fd7eb3884afc95fa49a661ee47f27..c7e8f8da97e319991b770a1b29a1563824358459 100644 (file)
@@ -27,7 +27,7 @@
 
 ;; Regexp matching with a sequence of Tai Viet characters.
 (defconst tai-viet-re
-  (format "[\xaa80-\xaac2\xaadb-\xaadf]+"))
+  (format "[\xaa80-\xaac2\xaadb-\xaadf-]+"))
 
 ;; Char-table of information about glyph type of Tai Viet characters.
 (defconst tai-viet-glyph-info
@@ -35,7 +35,8 @@
        (specials '((right-overhang . "ꪊꪋꪌꪍꪏꪓꪖꪜꪞꪡꪤꪨ")
                    (left-overhang . "ꫂ")
                    (combining-vowel . "ꪴꪰꪲꪳꪷꪸꪾ")
-                   (combining-tone . "꪿꫁"))))
+                   (combining-tone . "꪿꫁")
+                   (misc . "-"))))
     ;; Set all TaiViet characters to `t'.
     (set-char-table-range table (cons #xaa80 #xaac2) t)
     (set-char-table-range table (cons #xaadb #xaadf) t)