Mercurial > emacs
changeset 29828:cb30c41d1bb4
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 21 Jun 2000 02:05:10 +0000 |
parents | dd9436a06050 |
children | b591c2e8fb9e |
files | lisp/language/tibet-util.el |
diffstat | 1 files changed, 7 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/language/tibet-util.el Tue Jun 20 23:59:05 2000 +0000 +++ b/lisp/language/tibet-util.el Wed Jun 21 02:05:10 2000 +0000 @@ -50,7 +50,7 @@ (i 0) ch this-trans) (while (< i len) - (let ((idx (string-match tibetan-precomposition-rule-alist str i))) + (let ((idx (string-match tibetan-precomposition-rule-regexp str i))) (if (eq idx i) ;; Ith character and the followings matches precomposable ;; Tibetan sequence. @@ -116,13 +116,13 @@ ;;; (Sanskrit visarga, though it is a vowel modifier, is considered ;;; to be a punctuation.) ;;; -;;; Here are examples of the words "bsgrubs" and "h'uM" +;;; Here are examples of the words "bsgrubs" and "hfauM" ;;; -;;; 4$(7"70"714%qx!"U0"G###C"U14"70"714"G0"G1(B 4$(7"Hx!"Rx!"Ur'"_0"H"A"U"_1(B +;;; 4$(7"70"714%qx!"U0"G###C"U14"70"714"G0"G1(B 4$(7"Hx!"Rx!"Ur'"_0"H"R"U"_1(B ;;; ;;; M ;;; b s b s h -;;; g ' +;;; g fa ;;; r u ;;; u ;;; @@ -153,8 +153,9 @@ ;; Added by Tomabechi 2000/06/08 (if (memq char '(?$(7"T(B ?$(7"V(B ?$(7"W(B ?$(7"X(B ?$(7"Y(B ?$(7"Z(B ?$(7"b(B)) (setq comp-vowel - (cddr (assoc (char-to-string char) - tibetan-composite-vowel-alist)) + (copy-sequence + (cddr (assoc (char-to-string char) + tibetan-composite-vowel-alist))) char (cadr (assoc (char-to-string char) tibetan-composite-vowel-alist))))