aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/language
diff options
context:
space:
mode:
authorKenichi Handa2000-06-21 02:05:10 +0000
committerKenichi Handa2000-06-21 02:05:10 +0000
commitff69c4ee0cc31d39936c094cf1e22b50d42eace4 (patch)
treef65e366649f9efd1dd27ca02d1f0bfca97215fe9 /lisp/language
parentd9330f43f401ce74c34de4d9351607b911f6696d (diff)
downloademacs-ff69c4ee0cc31d39936c094cf1e22b50d42eace4.tar.gz
emacs-ff69c4ee0cc31d39936c094cf1e22b50d42eace4.zip
*** empty log message ***
Diffstat (limited to 'lisp/language')
-rw-r--r--lisp/language/tibet-util.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/language/tibet-util.el b/lisp/language/tibet-util.el
index efa07fa1fa6..e09828b7cf6 100644
--- a/lisp/language/tibet-util.el
+++ b/lisp/language/tibet-util.el
@@ -50,7 +50,7 @@ Returns non-nil if CH is Tibetan. Otherwise, returns nil."
50 (i 0) 50 (i 0)
51 ch this-trans) 51 ch this-trans)
52 (while (< i len) 52 (while (< i len)
53 (let ((idx (string-match tibetan-precomposition-rule-alist str i))) 53 (let ((idx (string-match tibetan-precomposition-rule-regexp str i)))
54 (if (eq idx i) 54 (if (eq idx i)
55 ;; Ith character and the followings matches precomposable 55 ;; Ith character and the followings matches precomposable
56 ;; Tibetan sequence. 56 ;; Tibetan sequence.
@@ -116,13 +116,13 @@ The returned string has no composition information."
116;;; (Sanskrit visarga, though it is a vowel modifier, is considered 116;;; (Sanskrit visarga, though it is a vowel modifier, is considered
117;;; to be a punctuation.) 117;;; to be a punctuation.)
118;;; 118;;;
119;;; Here are examples of the words "bsgrubs" and "h'uM" 119;;; Here are examples of the words "bsgrubs" and "hfauM"
120;;; 120;;;
121;;; 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 121;;; 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
122;;; 122;;;
123;;; M 123;;; M
124;;; b s b s h 124;;; b s b s h
125;;; g ' 125;;; g fa
126;;; r u 126;;; r u
127;;; u 127;;; u
128;;; 128;;;
@@ -153,8 +153,9 @@ The returned string has no composition information."
153 ;; Added by Tomabechi 2000/06/08 153 ;; Added by Tomabechi 2000/06/08
154 (if (memq char '(?$(7"T(B ?$(7"V(B ?$(7"W(B ?$(7"X(B ?$(7"Y(B ?$(7"Z(B ?$(7"b(B)) 154 (if (memq char '(?$(7"T(B ?$(7"V(B ?$(7"W(B ?$(7"X(B ?$(7"Y(B ?$(7"Z(B ?$(7"b(B))
155 (setq comp-vowel 155 (setq comp-vowel
156 (cddr (assoc (char-to-string char) 156 (copy-sequence
157 tibetan-composite-vowel-alist)) 157 (cddr (assoc (char-to-string char)
158 tibetan-composite-vowel-alist)))
158 char 159 char
159 (cadr (assoc (char-to-string char) 160 (cadr (assoc (char-to-string char)
160 tibetan-composite-vowel-alist)))) 161 tibetan-composite-vowel-alist))))