Mercurial > emacs
annotate lisp/language/tibet-util.el @ 31935:e60545d4c1bd
*** empty log message ***
author | Miles Bader <miles@gnu.org> |
---|---|
date | Wed, 27 Sep 2000 12:24:29 +0000 |
parents | cb30c41d1bb4 |
children | b82a6fbaae16 |
rev | line source |
---|---|
17315
a3ca5e15c82a
Fix the format of the first line.
Kenichi Handa <handa@m17n.org>
parents:
17301
diff
changeset
|
1 ;;; tibet-util.el --- Support for inputting Tibetan characters |
17301 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18309
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
17301 | 5 |
6 ;; Keywords: multilingual, Tibetan | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
25 ;; Author: Toru TOMABECHI, <Toru.Tomabechi@orient.unil.ch> | |
26 | |
27 ;; Created: Feb. 17. 1997 | |
28 | |
29 ;; History: | |
30 ;; 1997.03.13 Modification in treatment of text properties; | |
31 ;; Support for some special signs and punctuations. | |
26896 | 32 ;; 1999.10.25 Modification for a new composition way by K.Handa. |
17301 | 33 |
34 ;;; Code: | |
35 | |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17776
diff
changeset
|
36 ;;;###autoload |
26896 | 37 (defun tibetan-char-p (ch) |
38 "Check if char CH is Tibetan character. | |
39 Returns non-nil if CH is Tibetan. Otherwise, returns nil." | |
40 (memq (char-charset ch) '(tibetan tibetan-1-column))) | |
41 | |
42 ;;; Functions for Tibetan <-> Tibetan-transcription. | |
17301 | 43 |
44 ;;;###autoload | |
26896 | 45 (defun tibetan-tibetan-to-transcription (str) |
46 "Transcribe Tibetan string STR and return the corresponding Roman string." | |
47 (let (;; Accumulate transcriptions here in reverse order. | |
48 (trans nil) | |
49 (len (length str)) | |
50 (i 0) | |
51 ch this-trans) | |
52 (while (< i len) | |
29828 | 53 (let ((idx (string-match tibetan-precomposition-rule-regexp str i))) |
26896 | 54 (if (eq idx i) |
55 ;; Ith character and the followings matches precomposable | |
56 ;; Tibetan sequence. | |
57 (setq i (match-end 0) | |
58 this-trans | |
59 (car (rassoc | |
60 (cdr (assoc (match-string 0 str) | |
61 tibetan-precomposition-rule-alist)) | |
62 tibetan-precomposed-transcription-alist))) | |
63 (setq ch (substring str i (1+ i)) | |
64 i (1+ i) | |
65 this-trans | |
66 (car (or (rassoc ch tibetan-consonant-transcription-alist) | |
67 (rassoc ch tibetan-vowel-transcription-alist) | |
68 (rassoc ch tibetan-subjoined-transcription-alist))))) | |
69 (setq trans (cons this-trans trans)))) | |
70 (apply 'concat (nreverse trans)))) | |
17301 | 71 |
72 ;;;###autoload | |
26896 | 73 (defun tibetan-transcription-to-tibetan (str) |
74 "Convert Tibetan Roman string STR to Tibetan character string. | |
75 The returned string has no composition information." | |
76 (let (;; Case is significant. | |
17301 | 77 (case-fold-search nil) |
26896 | 78 (idx 0) |
79 ;; Accumulate Tibetan strings here in reverse order. | |
80 (t-str-list nil) | |
81 i subtrans) | |
82 (while (setq i (string-match tibetan-regexp str idx)) | |
83 (if (< idx i) | |
84 ;; STR contains a pattern that doesn't match Tibetan | |
85 ;; transcription. Include the pattern as is. | |
86 (setq t-str-list (cons (substring str idx i) t-str-list))) | |
87 (setq subtrans (match-string 0 str) | |
88 idx (match-end 0)) | |
89 (let ((t-char (cdr (assoc subtrans | |
90 tibetan-precomposed-transcription-alist)))) | |
91 (if t-char | |
92 ;; SUBTRANS corresponds to a transcription for | |
93 ;; precomposable Tibetan sequence. | |
94 (setq t-char (car (rassoc t-char | |
95 tibetan-precomposition-rule-alist))) | |
96 (setq t-char | |
97 (cdr | |
98 (or (assoc subtrans tibetan-consonant-transcription-alist) | |
99 (assoc subtrans tibetan-vowel-transcription-alist) | |
100 (assoc subtrans tibetan-modifier-transcription-alist) | |
101 (assoc subtrans tibetan-subjoined-transcription-alist))))) | |
102 (setq t-str-list (cons t-char t-str-list)))) | |
103 (if (< idx (length str)) | |
104 (setq t-str-list (cons (substring str idx) t-str-list))) | |
105 (apply 'concat (nreverse t-str-list)))) | |
17301 | 106 |
107 ;;; | |
26896 | 108 ;;; Functions for composing/decomposing Tibetan sequence. |
17301 | 109 ;;; |
110 ;;; A Tibetan syllable is typically structured as follows: | |
111 ;;; | |
112 ;;; [Prefix] C [C+] V [M] [Suffix [Post suffix]] | |
113 ;;; | |
114 ;;; where C's are all vertically stacked, V appears below or above | |
115 ;;; consonant cluster and M is always put above the C[C+]V combination. | |
116 ;;; (Sanskrit visarga, though it is a vowel modifier, is considered | |
117 ;;; to be a punctuation.) | |
118 ;;; | |
29828 | 119 ;;; Here are examples of the words "bsgrubs" and "hfauM" |
17301 | 120 ;;; |
29828 | 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 |
17301 | 122 ;;; |
123 ;;; M | |
124 ;;; b s b s h | |
29828 | 125 ;;; g fa |
17301 | 126 ;;; r u |
127 ;;; u | |
128 ;;; | |
26896 | 129 ;;; Consonants `'' ($(7"A(B), `w' ($(7">(B), `y' ($(7"B(B), `r' ($(7"C(B) take special |
130 ;;; forms when they are used as subjoined consonant. Consonant `r' | |
131 ;;; takes another special form when used as superjoined in such a case | |
132 ;;; as "rka", while it does not change its form when conjoined with | |
133 ;;; subjoined `'', `w' or `y' as in "rwa", "rya". | |
134 | |
135 ;; Append a proper composition rule and glyph to COMPONENTS to compose | |
136 ;; CHAR with a composition that has COMPONENTS. | |
17301 | 137 |
26896 | 138 (defun tibetan-add-components (components char) |
139 (let ((last (last components)) | |
140 (stack-upper '(tc . bc)) | |
141 (stack-under '(bc . tc)) | |
29596
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
142 rule comp-vowel tmp) |
26896 | 143 ;; Special treatment for 'a chung. |
144 ;; If 'a follows a consonant, turn it into the subjoined form. | |
29596
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
145 ;; * Disabled by Tomabechi 2000/06/09 * |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
146 ;; Because in Unicode, $(7"A(B may follow directly a consonant without |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
147 ;; any intervening vowel, as in 4$(7"90"914""0"""Q14"A0"A1!;(B=4$(7"90"91(B 4$(7""0""1(B 4$(7"A0"A1(B not 4$(7"90"91(B 4$(7""0""1(B $(7"Q(B 4$(7"A0"A1(B |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
148 ;;(if (and (= char ?$(7"A(B) |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
149 ;; (aref (char-category-set (car last)) ?0)) |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
150 ;; (setq char ?$(7"R(B)) ;; modified for new font by Tomabechi 1999/12/10 |
17301 | 151 |
29596
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
152 ;; Composite vowel signs are decomposed before being added |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
153 ;; Added by Tomabechi 2000/06/08 |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
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)) |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
155 (setq comp-vowel |
29828 | 156 (copy-sequence |
157 (cddr (assoc (char-to-string char) | |
158 tibetan-composite-vowel-alist))) | |
29596
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
159 char |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
160 (cadr (assoc (char-to-string char) |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
161 tibetan-composite-vowel-alist)))) |
26896 | 162 (cond |
163 ;; Compose upper vowel sign vertically over. | |
164 ((aref (char-category-set char) ?2) | |
165 (setq rule stack-upper)) | |
17301 | 166 |
26896 | 167 ;; Compose lower vowel sign vertically under. |
168 ((aref (char-category-set char) ?3) | |
29363
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
169 (if (eq char ?$(7"Q(B) ;; `$(7"Q(B' should not visible when composed. |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
170 (setq rule nil) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
171 (setq rule stack-under))) |
26896 | 172 ;; Transform ra-mgo (superscribed r) if followed by a subjoined |
173 ;; consonant other than w, ', y, r. | |
174 ((and (= (car last) ?$(7"C(B) | |
29363
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
175 (not (memq char '(?$(7#>(B ?$(7"R(B ?$(7#B(B ?$(7#C(B)))) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
176 (setcar last ?$(7!"(B) ;; modified for newfont by Tomabechi 1999/12/10 |
26896 | 177 (setq rule stack-under)) |
178 ;; Transform initial base consonant if followed by a subjoined | |
179 ;; consonant but 'a. | |
180 (t | |
181 (let ((laststr (char-to-string (car last)))) | |
29363
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
182 (if (and (/= char ?$(7"R(B) ;; modified for new font by Tomabechi |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
183 (string-match "[$(7"!(B-$(7"="?"@"D(B-$(7"J"K(B]" laststr)) |
26896 | 184 (setcar last (string-to-char |
185 (cdr (assoc (char-to-string (car last)) | |
186 tibetan-base-to-subjoined-alist))))) | |
187 (setq rule stack-under)))) | |
17301 | 188 |
29363
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
189 (if rule |
29596
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
190 (setcdr last (list rule char))) |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
191 ;; Added by Tomabechi 2000/06/08 |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
192 (if comp-vowel |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
193 (nconc last comp-vowel)) |
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
194 )) |
17301 | 195 |
196 ;;;###autoload | |
197 (defun tibetan-compose-string (str) | |
26896 | 198 "Compose Tibetan string STR." |
199 (let ((idx 0)) | |
200 ;; `$(7"A(B' is included in the pattern for subjoined consonants | |
201 ;; because we treat it specially in tibetan-add-components. | |
29596
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
202 ;; (This feature is removed by Tomabechi 2000/06/08) |
26896 | 203 (while (setq idx (string-match tibetan-composable-pattern str idx)) |
204 (let ((from idx) | |
205 (to (match-end 0)) | |
206 components) | |
207 (if (eq (string-match tibetan-precomposition-rule-regexp str idx) idx) | |
208 (setq idx (match-end 0) | |
209 components | |
210 (list (string-to-char | |
211 (cdr | |
212 (assoc (match-string 0 str) | |
213 tibetan-precomposition-rule-alist))))) | |
214 (setq components (list (aref str idx)) | |
215 idx (1+ idx))) | |
216 (while (< idx to) | |
217 (tibetan-add-components components (aref str idx)) | |
218 (setq idx (1+ idx))) | |
219 (compose-string str from to components)))) | |
220 str) | |
17301 | 221 |
19553
e63ba5228950
(tibetan-composition): Add autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
19366
diff
changeset
|
222 ;;;###autoload |
26896 | 223 (defun tibetan-compose-region (beg end) |
224 "Compose Tibetan text the region BEG and END." | |
17301 | 225 (interactive "r") |
26896 | 226 (let (str result chars) |
17301 | 227 (save-excursion |
228 (save-restriction | |
229 (narrow-to-region beg end) | |
230 (goto-char (point-min)) | |
26896 | 231 ;; `$(7"A(B' is included in the pattern for subjoined consonants |
232 ;; because we treat it specially in tibetan-add-components. | |
29596
c3845ffcb423
Convert all tibetan-1-column characters
Kenichi Handa <handa@m17n.org>
parents:
29363
diff
changeset
|
233 ;; (This feature is removed by Tomabechi 2000/06/08) |
26896 | 234 (while (re-search-forward tibetan-composable-pattern nil t) |
235 (let ((from (match-beginning 0)) | |
236 (to (match-end 0)) | |
237 components) | |
238 (goto-char from) | |
239 (if (looking-at tibetan-precomposition-rule-regexp) | |
240 (progn | |
241 (setq components | |
242 (list (string-to-char | |
243 (cdr | |
244 (assoc (match-string 0) | |
245 tibetan-precomposition-rule-alist))))) | |
246 (goto-char (match-end 0))) | |
247 (setq components (list (char-after from))) | |
248 (forward-char 1)) | |
249 (while (< (point) to) | |
250 (tibetan-add-components components (following-char)) | |
251 (forward-char 1)) | |
252 (compose-region from to components))))))) | |
17301 | 253 |
29363
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
254 (defvar tibetan-decompose-precomposition-alist |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
255 (mapcar (function (lambda (x) (cons (string-to-char (cdr x)) (car x)))) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
256 tibetan-precomposition-rule-alist)) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
257 |
17301 | 258 ;;;###autoload |
29363
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
259 (defun tibetan-decompose-region (from to) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
260 "Decompose Tibetan text in the region FROM and TO. |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
261 This is different from decompose-region because precomposed Tibetan characters |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
262 are decomposed into normal Tiebtan character sequences." |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
263 (interactive "r") |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
264 (save-restriction |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
265 (narrow-to-region from to) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
266 (decompose-region from to) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
267 (goto-char from) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
268 (while (not (eobp)) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
269 (let* ((char (following-char)) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
270 (slot (assq char tibetan-decompose-precomposition-alist))) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
271 (if slot |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
272 (progn |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
273 (delete-char 1) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
274 (insert (cdr slot))) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
275 (forward-char 1)))))) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
276 |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
277 |
26896 | 278 ;;;###autoload |
29363
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
279 (defun tibetan-decompose-string (str) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
280 "Decompose Tibetan string STR. |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
281 This is different from decompose-string because precomposed Tibetan characters |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
282 are decomposed into normal Tiebtan character sequences." |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
283 (let ((new "") |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
284 (len (length str)) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
285 (idx 0) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
286 char slot) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
287 (while (< idx len) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
288 (setq char (aref str idx) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
289 slot (assq (aref str idx) tibetan-decompose-precomposition-alist) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
290 new (concat new (if slot (cdr slot) (char-to-string char))) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
291 idx (1+ idx))) |
1ebd8db9c3dc
(tibetan-add-components): Fixes for new
Kenichi Handa <handa@m17n.org>
parents:
28906
diff
changeset
|
292 new)) |
26896 | 293 |
294 ;;;###autoload | |
295 (defun tibetan-composition-function (from to pattern &optional string) | |
296 (if string | |
297 (tibetan-compose-string string) | |
298 (tibetan-compose-region from to)) | |
299 (- to from)) | |
17301 | 300 |
301 ;;; | |
302 ;;; This variable is used to avoid repeated decomposition. | |
303 ;;; | |
304 (setq-default tibetan-decomposed nil) | |
305 | |
306 ;;;###autoload | |
307 (defun tibetan-decompose-buffer () | |
308 "Decomposes Tibetan characters in the buffer into their components. | |
26896 | 309 See also the documentation of the function `tibetan-decompose-region'." |
17301 | 310 (interactive) |
311 (make-local-variable 'tibetan-decomposed) | |
312 (cond ((not tibetan-decomposed) | |
313 (tibetan-decompose-region (point-min) (point-max)) | |
314 (setq tibetan-decomposed t)))) | |
315 | |
316 ;;;###autoload | |
317 (defun tibetan-compose-buffer () | |
318 "Composes Tibetan character components in the buffer. | |
319 See also docstring of the function tibetan-compose-region." | |
320 (interactive) | |
321 (make-local-variable 'tibetan-decomposed) | |
322 (tibetan-compose-region (point-min) (point-max)) | |
323 (setq tibetan-decomposed nil)) | |
324 | |
325 ;;;###autoload | |
326 (defun tibetan-post-read-conversion (len) | |
327 (save-excursion | |
328 (save-restriction | |
329 (let ((buffer-modified-p (buffer-modified-p))) | |
330 (narrow-to-region (point) (+ (point) len)) | |
331 (tibetan-compose-region (point-min) (point-max)) | |
332 (set-buffer-modified-p buffer-modified-p) | |
20107
4595a463b105
(tibetan-post-read-conversion): Return
Kenichi Handa <handa@m17n.org>
parents:
19553
diff
changeset
|
333 (make-local-variable 'tibetan-decomposed) |
4595a463b105
(tibetan-post-read-conversion): Return
Kenichi Handa <handa@m17n.org>
parents:
19553
diff
changeset
|
334 (setq tibetan-decomposed nil) |
4595a463b105
(tibetan-post-read-conversion): Return
Kenichi Handa <handa@m17n.org>
parents:
19553
diff
changeset
|
335 (- (point-max) (point-min)))))) |
17301 | 336 |
337 | |
338 ;;;###autoload | |
339 (defun tibetan-pre-write-conversion (from to) | |
340 (setq tibetan-decomposed-temp tibetan-decomposed) | |
23522
0f86fe9632e0
(tibetan-pre-write-conversion): Use with-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
22987
diff
changeset
|
341 (let ((old-buf (current-buffer))) |
23545
0d25c6f765ab
(tibetan-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23522
diff
changeset
|
342 (set-buffer (generate-new-buffer " *temp*")) |
0d25c6f765ab
(tibetan-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23522
diff
changeset
|
343 (if (stringp from) |
0d25c6f765ab
(tibetan-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23522
diff
changeset
|
344 (insert from) |
0d25c6f765ab
(tibetan-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23522
diff
changeset
|
345 (insert-buffer-substring old-buf from to)) |
0d25c6f765ab
(tibetan-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23522
diff
changeset
|
346 (if (not tibetan-decomposed-temp) |
0d25c6f765ab
(tibetan-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23522
diff
changeset
|
347 (tibetan-decompose-region (point-min) (point-max))) |
17776
ece62fdeeebb
(tibetan-pre-write-conversion): Make it work
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
348 ;; Should return nil as annotations. |
ece62fdeeebb
(tibetan-pre-write-conversion): Make it work
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
349 nil)) |
17301 | 350 |
18309
bd8b521f5218
Provide XXX-util instead of
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
351 (provide 'tibet-util) |
17301 | 352 |
353 ;;; language/tibet-util.el ends here. |