Mercurial > emacs
annotate lisp/language/thai-util.el @ 24679:556285c0e5c4
(unibyte_display_via_language_environment):
Variable moved to xdisp.c.
(syms_of_w32fns): Don't set up Lisp var here.
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Sun, 02 May 1999 10:58:11 +0000 |
parents | 9ae5e1af3518 |
children | fce3871ada53 |
rev | line source |
---|---|
17315
a3ca5e15c82a
Fix the format of the first line.
Kenichi Handa <handa@m17n.org>
parents:
17172
diff
changeset
|
1 ;;; thai-util.el --- utilities for Thai |
17052 | 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. |
17052 | 5 |
6 ;; Keywords: mule, multilingual, thai | |
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 | |
17071 | 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. | |
17052 | 24 |
25 ;;; Code: | |
26 | |
18972
3f51d8153775
(setup-thai-environment): Add correct autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
18549
diff
changeset
|
27 ;;;###autoload |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17775
diff
changeset
|
28 (defun setup-thai-environment () |
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17775
diff
changeset
|
29 "Setup multilingual environment (MULE) for Thai." |
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17775
diff
changeset
|
30 (interactive) |
22987
708271862495
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
20737
diff
changeset
|
31 (set-language-environment "Thai")) |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17775
diff
changeset
|
32 |
17052 | 33 ;; Setting information of Thai characters. |
34 | |
23546
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
35 (defvar thai-category-table (copy-category-table)) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
36 (or (category-docstring ?+ thai-category-table) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
37 (define-category ?+ "Thai consonant" thai-category-table)) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
38 (or (category-docstring ?- thai-category-table) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
39 (define-category ?- "Thai diacritical mark" thai-category-table)) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
40 |
17052 | 41 (let ((l '((?,T!(B consonant "LETTER KO KAI") ; 0xA1 |
42 (?,T"(B consonant "LETTER KHO KHAI") ; 0xA2 | |
43 (?,T#(B consonant "LETTER KHO KHUAT") ; 0xA3 | |
44 (?,T$(B consonant "LETTER KHO KHWAI") ; 0xA4 | |
45 (?,T%(B consonant "LETTER KHO KHON") ; 0xA5 | |
46 (?,T&(B consonant "LETTER KHO RAKHANG") ; 0xA6 | |
47 (?,T'(B consonant "LETTER NGO NGU") ; 0xA7 | |
48 (?,T((B consonant "LETTER CHO CHAN") ; 0xA8 | |
49 (?,T)(B consonant "LETTER CHO CHING") ; 0xA9 | |
50 (?,T*(B consonant "LETTER CHO CHANG") ; 0xAA | |
51 (?,T+(B consonant "LETTER SO SO") ; 0xAB | |
52 (?,T,(B consonant "LETTER CHO CHOE") ; 0xAC | |
53 (?,T-(B consonant "LETTER YO YING") ; 0xAD | |
54 (?,T.(B consonant "LETTER DO CHADA") ; 0xAE | |
55 (?,T/(B consonant "LETTER TO PATAK") ; 0xAF | |
56 (?,T0(B consonant "LETTER THO THAN") ; 0xB0 | |
57 (?,T1(B consonant "LETTER THO NANGMONTHO") ; 0xB1 | |
58 (?,T2(B consonant "LETTER THO PHUTHAO") ; 0xB2 | |
59 (?,T3(B consonant "LETTER NO NEN") ; 0xB3 | |
60 (?,T4(B consonant "LETTER DO DEK") ; 0xB4 | |
61 (?,T5(B consonant "LETTER TO TAO") ; 0xB5 | |
62 (?,T6(B consonant "LETTER THO THUNG") ; 0xB6 | |
63 (?,T7(B consonant "LETTER THO THAHAN") ; 0xB7 | |
64 (?,T8(B consonant "LETTER THO THONG") ; 0xB8 | |
65 (?,T9(B consonant "LETTER NO NU") ; 0xB9 | |
66 (?,T:(B consonant "LETTER BO BAIMAI") ; 0xBA | |
67 (?,T;(B consonant "LETTER PO PLA") ; 0xBB | |
68 (?,T<(B consonant "LETTER PHO PHUNG") ; 0xBC | |
69 (?,T=(B consonant "LETTER FO FA") ; 0xBD | |
70 (?,T>(B consonant "LETTER PHO PHAN") ; 0xBE | |
71 (?,T?(B consonant "LETTER FO FAN") ; 0xBF | |
72 (?,T@(B consonant "LETTER PHO SAMPHAO") ; 0xC0 | |
73 (?,TA(B consonant "LETTER MO MA") ; 0xC1 | |
74 (?,TB(B consonant "LETTER YO YAK") ; 0xC2 | |
75 (?,TC(B consonant "LETTER RO RUA") ; 0xC3 | |
76 (?,TD(B vowel-base "LETTER RU (Pali vowel letter)") ; 0xC4 | |
77 (?,TE(B consonant "LETTER LO LING") ; 0xC5 | |
78 (?,TF(B vowel-base "LETTER LU (Pali vowel letter)") ; 0xC6 | |
79 (?,TG(B consonant "LETTER WO WAEN") ; 0xC7 | |
80 (?,TH(B consonant "LETTER SO SALA") ; 0xC8 | |
81 (?,TI(B consonant "LETTER SO RUSI") ; 0xC9 | |
82 (?,TJ(B consonant "LETTER SO SUA") ; 0xCA | |
83 (?,TK(B consonant "LETTER HO HIP") ; 0xCB | |
84 (?,TL(B consonant "LETTER LO CHULA") ; 0xCC | |
85 (?,TM(B consonant "LETTER O ANG") ; 0xCD | |
86 (?,TN(B consonant "LETTER HO NOK HUK") ; 0xCE | |
87 (?,TO(B special "PAI YAN NOI (abbreviation)") ; 0xCF | |
88 (?,TP(B vowel-base "VOWEL SIGN SARA A") ; 0xD0 | |
89 (?,TQ(B vowel-upper "VOWEL SIGN MAI HAN-AKAT N/S-T") ; 0xD1 | |
90 (?,TR(B vowel-base "VOWEL SIGN SARA AA") ; 0xD2 | |
91 (?,TS(B vowel-base "VOWEL SIGN SARA AM") ; 0xD3 | |
92 (?,TT(B vowel-upper "VOWEL SIGN SARA I N/S-T") ; 0xD4 | |
93 (?,TU(B vowel-upper "VOWEL SIGN SARA II N/S-T") ; 0xD5 | |
94 (?,TV(B vowel-upper "VOWEL SIGN SARA UE N/S-T") ; 0xD6 | |
95 (?,TW(B vowel-upper "VOWEL SIGN SARA UEE N/S-T") ; 0xD7 | |
96 (?,TX(B vowel-lower "VOWEL SIGN SARA U N/S-B") ; 0xD8 | |
97 (?,TY(B vowel-lower "VOWEL SIGN SARA UU N/S-B") ; 0xD9 | |
98 (?,TZ(B vowel-lower "VOWEL SIGN PHINTHU N/S-B (Pali virama)") ; 0xDA | |
99 (?,T[(B invalid nil) ; 0xDA | |
100 (?,T\(B invalid nil) ; 0xDC | |
101 (?,T](B invalid nil) ; 0xDC | |
102 (?,T^(B invalid nil) ; 0xDC | |
103 (?,T_(B special "BAHT SIGN (currency symbol)") ; 0xDF | |
104 (?,T`(B vowel-base "VOWEL SIGN SARA E") ; 0xE0 | |
105 (?,Ta(B vowel-base "VOWEL SIGN SARA AE") ; 0xE1 | |
106 (?,Tb(B vowel-base "VOWEL SIGN SARA O") ; 0xE2 | |
107 (?,Tc(B vowel-base "VOWEL SIGN SARA MAI MUAN") ; 0xE3 | |
108 (?,Td(B vowel-base "VOWEL SIGN SARA MAI MALAI") ; 0xE4 | |
109 (?,Te(B vowel-base "LAK KHANG YAO") ; 0xE5 | |
110 (?,Tf(B special "MAI YAMOK (repetion)") ; 0xE6 | |
111 (?,Tg(B vowel-upper "VOWEL SIGN MAI TAI KHU N/S-T") ; 0xE7 | |
112 (?,Th(B tone "TONE MAI EK N/S-T") ; 0xE8 | |
113 (?,Ti(B tone "TONE MAI THO N/S-T") ; 0xE9 | |
114 (?,Tj(B tone "TONE MAI TRI N/S-T") ; 0xEA | |
115 (?,Tk(B tone "TONE MAI CHATTAWA N/S-T") ; 0xEB | |
116 (?,Tl(B tone "THANTHAKHAT N/S-T (cancellation mark)") ; 0xEC | |
117 (?,Tm(B tone "NIKKHAHIT N/S-T (final nasal)") ; 0xED | |
118 (?,Tn(B vowel-upper "YAMAKKAN N/S-T") ; 0xEE | |
119 (?,To(B special "FONRMAN") ; 0xEF | |
120 (?,Tp(B special "DIGIT ZERO") ; 0xF0 | |
121 (?,Tq(B special "DIGIT ONE") ; 0xF1 | |
122 (?,Tr(B special "DIGIT TWO") ; 0xF2 | |
123 (?,Ts(B special "DIGIT THREE") ; 0xF3 | |
124 (?,Tt(B special "DIGIT FOUR") ; 0xF4 | |
125 (?,Tu(B special "DIGIT FIVE") ; 0xF5 | |
126 (?,Tv(B special "DIGIT SIX") ; 0xF6 | |
127 (?,Tw(B special "DIGIT SEVEN") ; 0xF7 | |
128 (?,Tx(B special "DIGIT EIGHT") ; 0xF8 | |
129 (?,Ty(B special "DIGIT NINE") ; 0xF9 | |
130 (?,Tz(B special "ANGKHANKHU (ellipsis)") ; 0xFA | |
131 (?,T{(B special "KHOMUT (beginning of religious texts)") ; 0xFB | |
132 (?,T|(B invalid nil) ; 0xFC | |
133 (?,T}(B invalid nil) ; 0xFD | |
134 (?,T~(B invalid nil) ; 0xFE | |
135 )) | |
136 elm) | |
137 (while l | |
138 (setq elm (car l)) | |
23546
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
139 (let ((ptype (nth 1 elm))) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
140 (put-char-code-property (car elm) 'phonetic-type ptype) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
141 (if (eq ptype 'consonant) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
142 (modify-category-entry (car elm) ?+ thai-category-table) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
143 (if (memq ptype '(vowel-upper vowel-lower tone)) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
144 (modify-category-entry (car elm) ?- thai-category-table)))) |
17052 | 145 (put-char-code-property (car elm) 'name (nth 2 elm)) |
146 (setq l (cdr l)))) | |
147 | |
23546
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
148 |
17052 | 149 ;;;###autoload |
150 (defun thai-compose-region (beg end) | |
151 "Compose Thai characters in the region. | |
152 When called from a program, expects two arguments, | |
153 positions (integers or markers) specifying the region." | |
154 (interactive "r") | |
155 (save-restriction | |
156 (narrow-to-region beg end) | |
157 (decompose-region (point-min) (point-max)) | |
158 (goto-char (point-min)) | |
23546
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
159 (let ((current-ctbl (category-table))) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
160 (set-category-table thai-category-table) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
161 (unwind-protect |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
162 (while (re-search-forward "\\c+\\c-+" nil t) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
163 (compose-region (match-beginning 0) (match-end 0))) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
164 (set-category-table current-ctbl))))) |
17052 | 165 |
166 ;;;###autoload | |
23994
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
167 (defun thai-compose-string (string) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
168 "Compose Thai characters in STRING and return the resulting string." |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
169 (let ((current-ctbl (category-table))) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
170 (set-category-table thai-category-table) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
171 (unwind-protect |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
172 (let ((idx 0) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
173 (new "")) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
174 (while (string-match "\\c+\\c-+" string idx) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
175 (if (< idx (match-beginning 0)) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
176 (setq new |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
177 (concat new (substring string idx (match-beginning 0))))) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
178 (setq new (concat new (compose-string (match-string 0 string)))) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
179 (setq idx (match-end 0))) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
180 (if (< idx (length string)) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
181 (setq new (concat new (substring string idx)))) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
182 new) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
183 (set-category-table current-ctbl)))) |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
184 |
9ae5e1af3518
(thai-compose-string): New function.
Kenichi Handa <handa@m17n.org>
parents:
23992
diff
changeset
|
185 ;;;###autoload |
17052 | 186 (defun thai-compose-buffer () |
187 "Compose Thai characters in the current buffer." | |
188 (interactive) | |
189 (thai-compose-region (point-min) (point-max))) | |
190 | |
191 ;;;###autoload | |
192 (defun thai-post-read-conversion (len) | |
193 (save-excursion | |
194 (save-restriction | |
23992
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
195 (let ((buffer-modified-p (buffer-modified-p)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
196 (category-table (category-table)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
197 (buf (current-buffer)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
198 (workbuf (generate-new-buffer "*thai-work*")) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
199 (pos (point)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
200 start end str) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
201 (save-excursion |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
202 (set-buffer workbuf) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
203 (setq buffer-undo-list t)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
204 (narrow-to-region pos (+ pos len)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
205 (set-category-table thai-category-table) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
206 (unwind-protect |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
207 (progn |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
208 (while (re-search-forward "\\c+\\c-+" nil t) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
209 (setq start (match-beginning 0) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
210 end (point) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
211 str (compose-string (buffer-substring start end))) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
212 (set-buffer workbuf) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
213 (if (< pos start) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
214 (insert-buffer-substring buf pos start)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
215 (insert str) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
216 (set-buffer buf) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
217 (setq pos end)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
218 (delete-region (point-min) (point)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
219 (insert-buffer-substring workbuf)) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
220 (set-category-table category-table) |
81b2d3ea98ed
(thai-post-read-conversion): Handle Thai
Kenichi Handa <handa@m17n.org>
parents:
23546
diff
changeset
|
221 (kill-buffer workbuf)) |
17052 | 222 (set-buffer-modified-p buffer-modified-p) |
17172
1798b476d58b
(thai-post-read-conversion): Return the correct length.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
223 (- (point-max) (point-min)))))) |
17052 | 224 |
225 ;;;###autoload | |
226 (defun thai-pre-write-conversion (from to) | |
23523
e49c2fb2a695
(thai-pre-write-conversion): Use with-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
22987
diff
changeset
|
227 (let ((old-buf (current-buffer))) |
23546
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
228 (set-buffer (generate-new-buffer " *temp*")) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
229 (if (stringp from) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
230 (insert from) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
231 (insert-buffer-substring old-buf from to)) |
d180b9c69e4a
(thai-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23523
diff
changeset
|
232 (decompose-region (point-min) (point-max)) |
17775
a4bf913d6caf
(thai-pre-write-conversion): Make it work
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
233 ;; Should return nil as annotations. |
a4bf913d6caf
(thai-pre-write-conversion): Make it work
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
234 nil)) |
17052 | 235 |
236 ;; | |
18309
bd8b521f5218
Provide XXX-util instead of
Kenichi Handa <handa@m17n.org>
parents:
18203
diff
changeset
|
237 (provide 'thai-util) |
17052 | 238 |
239 ;;; thai-util.el ends here |