comparison lisp/international/characters.el @ 27691:5ed8dd27c116

Setup case table for Vietnamese.
author Kenichi Handa <handa@m17n.org>
date Sun, 13 Feb 2000 23:50:32 +0000
parents c151d3ae1794
children 038c13f83357
comparison
equal deleted inserted replaced
27690:fa3a58da3aa9 27691:5ed8dd27c116
555 (modify-category-entry upper ?v) 555 (modify-category-entry upper ?v)
556 (modify-category-entry lower ?l) ; To make a word with 556 (modify-category-entry lower ?l) ; To make a word with
557 (modify-category-entry upper ?l) ; latin characters. 557 (modify-category-entry upper ?l) ; latin characters.
558 ) 558 )
559 559
560 (let ((tbl (standard-case-table))
561 (i 32))
562 (while (< i 128)
563 (set-case-syntax-pair (make-char 'vietnamese-viscii-upper i)
564 (make-char 'vietnamese-viscii-lower i)
565 tbl)
566 (setq i (1+ i))))
567
560 568
561 ;;; Setting word boundary. 569 ;;; Setting word boundary.
562 570
563 (setq word-combining-categories 571 (setq word-combining-categories
564 '((?l . ?l))) 572 '((?l . ?l)))