Mercurial > emacs
annotate lisp/composite.el @ 90040:e30d01a249dd
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 28 Oct 2004 02:08:47 +0000 |
parents | cce1c0ee76ee |
children | f9a65d7ebd29 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
1 ;;; composite.el --- support character composition |
26880 | 2 |
3 ;; Copyright (C) 1999 Electrotechnical Laboratory, JAPAN. | |
4 ;; Licensed to the Free Software Foundation. | |
5 | |
6 ;; Keywords: mule, multilingual, character composition | |
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 | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
25 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37232
diff
changeset
|
26 |
26880 | 27 ;;; Code: |
28 | |
29 (defconst reference-point-alist | |
30 '((tl . 0) (tc . 1) (tr . 2) | |
31 (Bl . 3) (Bc . 4) (Br . 5) | |
32 (bl . 6) (bc . 7) (br . 8) | |
33 (cl . 9) (cc . 10) (cr . 11) | |
34 (top-left . 0) (top-center . 1) (top-right . 2) | |
35 (base-left . 3) (base-center . 4) (base-right . 5) | |
36 (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) | |
37 (center-left . 9) (center-center . 10) (center-right . 11) | |
38 ;; For backward compatibility... | |
39 (ml . 3) (mc . 10) (mr . 5) | |
40 (mid-left . 3) (mid-center . 10) (mid-right . 5)) | |
41 "Alist of symbols vs integer codes of glyph reference points. | |
42 A glyph reference point symbol is to be used to specify a composition | |
89497 | 43 rule in COMPONENTS argument to such functions as `compose-region'. |
26880 | 44 |
45 Meanings of glyph reference point codes are as follows: | |
46 | |
47 0----1----2 <---- ascent 0:tl or top-left | |
48 | | 1:tc or top-center | |
49 | | 2:tr or top-right | |
50 | | 3:Bl or base-left 9:cl or center-left | |
51 9 10 11 <---- center 4:Bc or base-center 10:cc or center-center | |
52 | | 5:Br or base-right 11:cr or center-right | |
53 --3----4----5-- <-- baseline 6:bl or bottom-left | |
54 | | 7:bc or bottom-center | |
55 6----7----8 <---- descent 8:br or bottom-right | |
56 | |
57 Glyph reference point symbols are to be used to specify composition | |
58 rule of the form \(GLOBAL-REF-POINT . NEW-REF-POINT), where | |
59 GLOBAL-REF-POINT is a reference point in the overall glyphs already | |
60 composed, and NEW-REF-POINT is a reference point in the new glyph to | |
61 be added. | |
62 | |
63 For instance, if GLOBAL-REF-POINT is `br' (bottom-right) and | |
37232
cebd635be09b
(reference-point-alist): Doc fix.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35075
diff
changeset
|
64 NEW-REF-POINT is `tc' (top-center), the overall glyph is updated as |
26880 | 65 follows (the point `*' corresponds to both reference points): |
66 | |
67 +-------+--+ <--- new ascent | |
68 | | | | |
69 | global| | | |
70 | glyph | | | |
71 -- | | |-- <--- baseline \(doesn't change) | |
72 +----+--*--+ | |
73 | | new | | |
74 | |glyph| | |
75 +----+-----+ <--- new descent | |
89722
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
76 |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
77 A composition rule may have the form \(GLOBAL-REF-POINT |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
78 NEW-REF-POINT XOFF YOFF), where XOFF and YOFF specifies how much |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
79 to shift NEW-REF-POINT from GLOBAL-REF-POINT. In this case, XOFF |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
80 and YOFF are integers in the range -100..100 representing the |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
81 shifting percentage against the font size.") |
26880 | 82 |
83 | |
56985
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
84 ;;;###autoload |
26880 | 85 (defun encode-composition-rule (rule) |
56985
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
86 "Encode composition rule RULE into an integer value. |
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
87 RULE is a cons of global and new reference point symbols |
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
88 \(see reference-point-alist)." |
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
89 |
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
90 ;; This must be compatible with C macro COMPOSITION_ENCODE_RULE |
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
91 ;; defined in composite.h. |
5eac7cd6d213
(encode-composition-rule): Add autoload cooky.
Kenichi Handa <handa@m17n.org>
parents:
54433
diff
changeset
|
92 |
26880 | 93 (if (and (integerp rule) (< rule 144)) |
94 ;; Already encoded. | |
95 rule | |
89722
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
96 (if (consp rule) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
97 (let ((gref (car rule)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
98 (nref (cdr rule)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
99 xoff yoff) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
100 (if (consp nref) ; (GREF NREF XOFF YOFF) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
101 (progn |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
102 (setq xoff (nth 1 nref) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
103 yoff (nth 2 nref) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
104 nref (car nref)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
105 (or (and (>= xoff -100) (<= xoff 100) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
106 (>= yoff -100) (<= yoff 100)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
107 (error "Invalid compostion rule: %s" rule)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
108 (setq xoff (+ xoff 128) yoff (+ yoff 128))) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
109 ;; (GREF . NREF) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
110 (setq xoff 0 yoff 0)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
111 (or (integerp gref) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
112 (setq gref (cdr (assq gref reference-point-alist)))) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
113 (or (integerp nref) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
114 (setq nref (cdr (assq nref reference-point-alist)))) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
115 (or (and (>= gref 0) (< gref 12) (>= nref 0) (< nref 12)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
116 (error "Invalid composition rule: %S" rule)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
117 (logior (lsh xoff 16) (lsh yoff 8) (+ (* gref 12) nref))) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
118 (error "Invalid composition rule: %S" rule)))) |
26880 | 119 |
120 ;; Decode encoded composition rule RULE-CODE. The value is a cons of | |
121 ;; global and new reference point symbols. | |
122 ;; This must be compatible with C macro COMPOSITION_DECODE_RULE | |
123 ;; defined in composite.h. | |
124 | |
125 (defun decode-composition-rule (rule-code) | |
89722
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
126 (or (and (natnump rule-code) (< rule-code #x1000000)) |
26880 | 127 (error "Invalid encoded composition rule: %S" rule-code)) |
89722
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
128 (let ((xoff (lsh rule-code -16)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
129 (yoff (logand (lsh rule-code -8) #xFF)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
130 gref nref) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
131 (setq rule-code (logand rule-code #xFF) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
132 gref (car (rassq (/ rule-code 12) reference-point-alist)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
133 nref (car (rassq (% rule-code 12) reference-point-alist))) |
26880 | 134 (or (and gref (symbolp gref) nref (symbolp nref)) |
135 (error "Invalid composition rule code: %S" rule-code)) | |
89722
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
136 (if (and (= xoff 0) (= yoff 0)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
137 (cons gref nref) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
138 (setq xoff (- xoff 128) yoff (- yoff 128)) |
eee9d99444cc
(reference-point-alist): Doc fixed.
Kenichi Handa <handa@m17n.org>
parents:
89664
diff
changeset
|
139 (list gref xoff yoff nref)))) |
26880 | 140 |
141 ;; Encode composition rules in composition components COMPONENTS. The | |
142 ;; value is a copy of COMPONENTS, where composition rules (cons of | |
143 ;; global and new glyph reference point symbols) are replaced with | |
144 ;; encoded composition rules. Optional 2nd argument NOCOPY non-nil | |
145 ;; means don't make a copy but modify COMPONENTS directly. | |
146 | |
147 (defun encode-composition-components (components &optional nocopy) | |
148 (or nocopy | |
149 (setq components (copy-sequence components))) | |
150 (if (vectorp components) | |
151 (let ((len (length components)) | |
152 (i 1)) | |
153 (while (< i len) | |
154 (aset components i | |
155 (encode-composition-rule (aref components i))) | |
156 (setq i (+ i 2)))) | |
157 (let ((tail (cdr components))) | |
158 (while tail | |
159 (setcar tail | |
160 (encode-composition-rule (car tail))) | |
161 (setq tail (nthcdr 2 tail))))) | |
162 components) | |
163 | |
164 ;; Decode composition rule codes in composition components COMPONENTS. | |
165 ;; The value is a copy of COMPONENTS, where composition rule codes are | |
166 ;; replaced with composition rules (cons of global and new glyph | |
167 ;; reference point symbols). Optional 2nd argument NOCOPY non-nil | |
168 ;; means don't make a copy but modify COMPONENTS directly. | |
169 ;; It is assumed that COMPONENTS is a vector and is for rule-base | |
170 ;; composition, thus (2N+1)th elements are rule codes. | |
171 | |
172 (defun decode-composition-components (components &optional nocopy) | |
173 (or nocopy | |
174 (setq components (copy-sequence components))) | |
175 (let ((len (length components)) | |
176 (i 1)) | |
177 (while (< i len) | |
178 (aset components i | |
179 (decode-composition-rule (aref components i))) | |
180 (setq i (+ i 2)))) | |
181 components) | |
182 | |
183 (defun compose-region (start end &optional components modification-func) | |
184 "Compose characters in the current region. | |
185 | |
46963 | 186 Characters are composed relatively, i.e. composed by overstricking or |
187 stacking depending on ascent, descent and other properties. | |
188 | |
26880 | 189 When called from a program, expects these four arguments. |
190 | |
191 First two arguments START and END are positions (integers or markers) | |
192 specifying the region. | |
193 | |
89497 | 194 Optional 3rd argument COMPONENTS, if non-nil, is a character, a string |
195 or a vector or list of integers and rules. | |
26880 | 196 |
197 If it is a character, it is an alternate character to display instead | |
198 of the text in the region. | |
199 | |
200 If it is a string, the elements are alternate characters. | |
201 | |
202 If it is a vector or list, it is a sequence of alternate characters and | |
203 composition rules, where (2N)th elements are characters and (2N+1)th | |
204 elements are composition rules to specify how to compose (2N+2)th | |
205 elements with previously composed N glyphs. | |
206 | |
207 A composition rule is a cons of global and new glyph reference point | |
208 symbols. See the documentation of `reference-point-alist' for more | |
209 detail. | |
210 | |
211 Optional 4th argument MODIFICATION-FUNC is a function to call to | |
212 adjust the composition when it gets invalid because of a change of | |
213 text in the composition." | |
214 (interactive "r") | |
215 (let ((modified-p (buffer-modified-p)) | |
216 (buffer-read-only nil)) | |
217 (if (or (vectorp components) (listp components)) | |
218 (setq components (encode-composition-components components))) | |
219 (compose-region-internal start end components modification-func) | |
54433
a5520bf073bb
(compose-region): Use restore-buffer-modified-p.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
220 (restore-buffer-modified-p modified-p))) |
26880 | 221 |
222 (defun decompose-region (start end) | |
223 "Decompose text in the current region. | |
224 | |
225 When called from a program, expects two arguments, | |
226 positions (integers or markers) specifying the region." | |
227 (interactive "r") | |
228 (let ((modified-p (buffer-modified-p)) | |
229 (buffer-read-only nil)) | |
230 (remove-text-properties start end '(composition nil)) | |
231 (set-buffer-modified-p modified-p))) | |
232 | |
233 (defun compose-string (string &optional start end components modification-func) | |
234 "Compose characters in string STRING. | |
235 | |
88808 | 236 The return value is STRING with the `composition' property put on all |
26880 | 237 the characters in it. |
238 | |
239 Optional 2nd and 3rd arguments START and END specify the range of | |
88808 | 240 STRING to be composed. They default to the beginning and the end of |
26880 | 241 STRING respectively. |
242 | |
243 Optional 4th argument COMPONENTS, if non-nil, is a character or a | |
244 sequence (vector, list, or string) of integers. See the function | |
245 `compose-region' for more detail. | |
246 | |
247 Optional 5th argument MODIFICATION-FUNC is a function to call to | |
248 adjust the composition when it gets invalid because of a change of | |
249 text in the composition." | |
250 (if (or (vectorp components) (listp components)) | |
251 (setq components (encode-composition-components components))) | |
252 (or start (setq start 0)) | |
253 (or end (setq end (length string))) | |
254 (compose-string-internal string start end components modification-func) | |
255 string) | |
256 | |
257 (defun decompose-string (string) | |
258 "Return STRING where `composition' property is removed." | |
259 (remove-text-properties 0 (length string) '(composition nil) string) | |
260 string) | |
261 | |
262 (defun compose-chars (&rest args) | |
263 "Return a string from arguments in which all characters are composed. | |
264 For relative composition, arguments are characters. | |
265 For rule-based composition, Mth \(where M is odd) arguments are | |
266 characters, and Nth \(where N is even) arguments are composition rules. | |
267 A composition rule is a cons of glyph reference points of the form | |
268 \(GLOBAL-REF-POINT . NEW-REF-POINT). See the documentation of | |
269 `reference-point-alist' for more detail." | |
270 (let (str components) | |
271 (if (consp (car (cdr args))) | |
272 ;; Rule-base composition. | |
273 (let ((len (length args)) | |
274 (tail (encode-composition-components args 'nocopy))) | |
275 | |
276 (while tail | |
277 (setq str (cons (car tail) str)) | |
278 (setq tail (nthcdr 2 tail))) | |
279 (setq str (concat (nreverse str)) | |
280 components args)) | |
281 ;; Relative composition. | |
282 (setq str (concat args))) | |
283 (compose-string-internal str 0 (length str) components))) | |
284 | |
285 (defun find-composition (pos &optional limit string detail-p) | |
286 "Return information about a composition at or nearest to buffer position POS. | |
287 | |
288 If the character at POS has `composition' property, the value is a list | |
289 of FROM, TO, and VALID-P. | |
290 | |
291 FROM and TO specify the range of text that has the same `composition' | |
292 property, VALID-P is non-nil if and only if this composition is valid. | |
293 | |
294 If there's no composition at POS, and the optional 2nd argument LIMIT | |
295 is non-nil, search for a composition toward LIMIT. | |
296 | |
297 If no composition is found, return nil. | |
298 | |
299 Optional 3rd argument STRING, if non-nil, is a string to look for a | |
300 composition in; nil means the current buffer. | |
301 | |
302 If a valid composition is found and the optional 4th argument DETAIL-P | |
303 is non-nil, the return value is a list of FROM, TO, COMPONENTS, | |
304 RELATIVE-P, MOD-FUNC, and WIDTH. | |
305 | |
306 COMPONENTS is a vector of integers, the meaning depends on RELATIVE-P. | |
307 | |
308 RELATIVE-P is t if the composition method is relative, else nil. | |
309 | |
310 If RELATIVE-P is t, COMPONENTS is a vector of characters to be | |
311 composed. If RELATIVE-P is nil, COMPONENTS is a vector of characters | |
312 and composition rules as described in `compose-region'. | |
313 | |
314 MOD-FUNC is a modification function of the composition. | |
315 | |
316 WIDTH is a number of columns the composition occupies on the screen." | |
317 (let ((result (find-composition-internal pos limit string detail-p))) | |
318 (if (and detail-p result (nth 2 result) (not (nth 3 result))) | |
319 ;; This is a valid rule-base composition. | |
320 (decode-composition-components (nth 2 result) 'nocopy)) | |
321 result)) | |
322 | |
323 | |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
324 (defun compose-chars-after (pos &optional limit object) |
26880 | 325 "Compose characters in current buffer after position POS. |
326 | |
327 It looks up the char-table `composition-function-table' (which see) by | |
328 a character after POS. If non-nil value is found, the format of the | |
329 value should be an alist of PATTERNs vs FUNCs, where PATTERNs are | |
330 regular expressions and FUNCs are functions. If the text after POS | |
331 matches one of PATTERNs, call the corresponding FUNC with three | |
332 arguments POS, TO, and PATTERN, where TO is the end position of text | |
333 matching PATTERN, and return what FUNC returns. Otherwise, return | |
334 nil. | |
335 | |
336 FUNC is responsible for composing the text properly. The return value | |
337 is: | |
338 nil -- if no characters were composed. | |
339 CHARS (integer) -- if CHARS characters were composed. | |
340 | |
341 Optional 2nd arg LIMIT, if non-nil, limits the matching of text. | |
342 | |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
343 Optional 3rd arg OBJECT, if non-nil, is a string that contains the |
89497 | 344 text to compose. In that case, POS and LIMIT index into the string. |
33244
59edd748e69a
(composition-function-table): Variable declaration
Kenichi Handa <handa@m17n.org>
parents:
30485
diff
changeset
|
345 |
26880 | 346 This function is the default value of `compose-chars-after-function'." |
347 (let ((tail (aref composition-function-table (char-after pos))) | |
348 pattern func result) | |
349 (when tail | |
30485
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
350 (save-match-data |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
351 (save-excursion |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49512
diff
changeset
|
352 (while (and tail (not func)) |
30485
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
353 (setq pattern (car (car tail)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
354 func (cdr (car tail))) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
355 (goto-char pos) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
356 (if (if limit |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
357 (and (re-search-forward pattern limit t) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
358 (= (match-beginning 0) pos)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
359 (looking-at pattern)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
360 (setq result (funcall func pos (match-end 0) pattern nil)) |
5551289a9329
(compose-chars-after): Preserve match data.
Kenichi Handa <handa@m17n.org>
parents:
29551
diff
changeset
|
361 (setq func nil tail (cdr tail))))))) |
26880 | 362 result)) |
363 | |
364 (defun compose-last-chars (args) | |
365 "Compose last characters. | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
366 The argument is a parameterized event of the form |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
367 \(compose-last-chars N COMPONENTS), |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
368 where N is the number of characters before point to compose, |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
369 COMPONENTS, if non-nil, is the same as the argument to `compose-region' |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
370 \(which see). If it is nil, `compose-chars-after' is called, |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
371 and that function find a proper rule to compose the target characters. |
26880 | 372 This function is intended to be used from input methods. |
373 The global keymap binds special event `compose-last-chars' to this | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
374 function. Input method may generate an event (compose-last-chars N COMPONENTS) |
26880 | 375 after a sequence character events." |
376 (interactive "e") | |
377 (let ((chars (nth 1 args))) | |
378 (if (and (numberp chars) | |
379 (>= (- (point) (point-min)) chars)) | |
35075
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
380 (if (nth 2 args) |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
381 (compose-region (- (point) chars) (point) (nth 2 args)) |
f49c90fa95d7
(compose-last-chars): New argument COMPONENTS. It
Kenichi Handa <handa@m17n.org>
parents:
33244
diff
changeset
|
382 (compose-chars-after (- (point) chars) (point)))))) |
26880 | 383 |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
384 (global-set-key [compose-last-chars] 'compose-last-chars) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
385 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
386 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
387 ;;; Automatic character composition. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
388 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
389 (defvar composition-function-table |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
390 (make-char-table nil) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
391 "Char table of functions for automatic character composition. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
392 For each character that has to be composed automatically with |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
393 preceding and/or following characters, this char table contains |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
394 a function to call to compose that character. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
395 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
396 Each function is called with two arguments, POS and STRING. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
397 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
398 If STRING is nil, POS is a position in the current buffer, and the |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
399 function has to compose a character at POS with surrounding characters |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
400 in the current buffer. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
401 |
89497 | 402 Otherwise, STRING is a string, and POS is an index into the string. In |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
403 this case, the function has to compose a character at POS with |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
404 surrounding characters in the string. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
405 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
406 See also the command `toggle-auto-composition'.") |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
407 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
408 ;; Copied from font-lock.el. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
409 (eval-when-compile |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
410 ;; Borrowed from lazy-lock.el. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
411 ;; We use this to preserve or protect things when modifying text properties. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
412 (defmacro save-buffer-state (varlist &rest body) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
413 "Bind variables according to VARLIST and eval BODY restoring buffer state." |
89307 | 414 `(let* ,(append varlist |
415 '((modified (buffer-modified-p)) (buffer-undo-list t) | |
416 (inhibit-read-only t) (inhibit-point-motion-hooks t) | |
417 (inhibit-modification-hooks t) | |
418 deactivate-mark buffer-file-name buffer-file-truename)) | |
419 ,@body | |
420 (unless modified | |
421 (restore-buffer-modified-p nil)))) | |
89497 | 422 ;; Fixme: This makes bootstrapping fail with this error. |
89307 | 423 ;; Symbol's function definition is void: eval-defun |
424 ;;(def-edebug-spec save-buffer-state let) | |
425 ) | |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
426 |
89651
65f1f8091f15
(auto-compose-chars): Don't do unnecessary save-exclusion and
Kenichi Handa <handa@m17n.org>
parents:
89608
diff
changeset
|
427 (put 'save-buffer-state 'lisp-indent-function 1) |
65f1f8091f15
(auto-compose-chars): Don't do unnecessary save-exclusion and
Kenichi Handa <handa@m17n.org>
parents:
89608
diff
changeset
|
428 |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
429 (defun auto-compose-chars (pos string) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
430 "Compose characters after the buffer position POS. |
89497 | 431 If STRING is non-nil, it is a string, and POS is an index into the string. |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
432 In that case, compose characters in the string. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
433 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
434 This function is the default value of `auto-composition-function' (which see)." |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
435 (save-buffer-state nil |
89659
91f056b94e70
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89651
diff
changeset
|
436 (save-excursion |
91f056b94e70
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89651
diff
changeset
|
437 (save-match-data |
89907
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
438 (condition-case nil |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
439 (let ((start pos) |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
440 (limit (if string (length string) (point-max))) |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
441 ch func newpos) |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
442 (setq limit |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
443 (or (text-property-any pos limit 'auto-composed t string) |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
444 limit) |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
445 pos |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
446 (catch 'tag |
89664
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
447 (if string |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
448 (while (< pos limit) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
449 (setq ch (aref string pos)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
450 (if (= ch ?\n) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
451 (throw 'tag (1+ pos))) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
452 (setq func (aref composition-function-table ch)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
453 (if (and (functionp func) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
454 (setq newpos (funcall func pos string)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
455 (> newpos pos)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
456 (setq pos newpos) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
457 (setq pos (1+ pos)))) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
458 (while (< pos limit) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
459 (setq ch (char-after pos)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
460 (if (= ch ?\n) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
461 (throw 'tag (1+ pos))) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
462 (setq func (aref composition-function-table ch)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
463 (if (and (functionp func) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
464 (setq newpos (funcall func pos string)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
465 (> newpos pos)) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
466 (setq pos newpos) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
467 (setq pos (1+ pos))))) |
5548dd3d1a7c
(auto-compose-chars): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
89659
diff
changeset
|
468 limit)) |
89907
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
469 (put-text-property start pos 'auto-composed t string)) |
df801f738c09
(auto-compose-chars): Execute the main code in
Kenichi Handa <handa@m17n.org>
parents:
89722
diff
changeset
|
470 (error nil)))))) |
89290
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
471 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
472 (setq auto-composition-function 'auto-compose-chars) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
473 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
474 (defun toggle-auto-composition (&optional arg) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
475 "Change whether automatic character composition is enabled in this buffer. |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
476 With arg, enable it iff arg is positive." |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
477 (interactive "P") |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
478 (let ((enable (if (null arg) (not auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
479 (> (prefix-numeric-value arg) 0)))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
480 (if enable |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
481 (kill-local-variable 'auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
482 (make-local-variable 'auto-composition-function) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
483 (setq auto-composition-function nil) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
484 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
485 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
486 (widen) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
487 (decompose-region (point-min) (point-max))))) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
488 |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
489 (save-buffer-state nil |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
490 (save-restriction |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
491 (widen) |
adbc95471ef8
Remove all autoload cookies.
Kenichi Handa <handa@m17n.org>
parents:
88808
diff
changeset
|
492 (put-text-property (point-min) (point-max) 'auto-composed nil))))) |
89528
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
493 |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
494 (defun auto-compose-region (from to) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
495 "Force automatic character composition on the region FROM and TO." |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
496 (save-excursion |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
497 (if (get-text-property from 'auto-composed) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
498 (setq from (next-single-property-change from 'auto-composed nil to))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
499 (goto-char from) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
500 (let ((modified-p (buffer-modified-p)) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
501 (inhibit-read-only '(composition auto-composed)) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
502 (stop (next-single-property-change (point) 'auto-composed nil to))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
503 (while (< (point) to) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
504 (if (= (point) stop) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
505 (progn |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
506 (goto-char (next-single-property-change (point) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
507 'auto-composed nil to)) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
508 (setq stop (next-single-property-change (point) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
509 'auto-composed nil to))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
510 (let ((func (aref composition-function-table (following-char))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
511 (pos (point))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
512 (if (functionp func) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
513 (goto-char (funcall func (point) nil))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
514 (if (<= (point) pos) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
515 (forward-char 1))))) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
516 (put-text-property from to 'auto-composed t) |
c75e3c6b608a
(auto-compose-region): New function.
Kenichi Handa <handa@m17n.org>
parents:
89497
diff
changeset
|
517 (set-buffer-modified-p modified-p)))) |
26880 | 518 |
519 | |
520 ;;; The following codes are only for backward compatibility with Emacs | |
46045
c74a601c84b3
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
38414
diff
changeset
|
521 ;;; 20.4 and earlier. |
26880 | 522 |
523 (defun decompose-composite-char (char &optional type with-composition-rule) | |
524 "Convert CHAR to string. | |
525 | |
526 If optional 2nd arg TYPE is non-nil, it is `string', `list', or | |
49512
6a0305153436
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46963
diff
changeset
|
527 `vector'. In this case, CHAR is converted to string, list of CHAR, or |
6a0305153436
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46963
diff
changeset
|
528 vector of CHAR respectively. |
6a0305153436
(decompose-composite-char): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46963
diff
changeset
|
529 Optional 3rd arg WITH-COMPOSITION-RULE is ignored." |
26880 | 530 (cond ((or (null type) (eq type 'string)) (char-to-string char)) |
531 ((eq type 'list) (list char)) | |
532 (t (vector char)))) | |
533 | |
29521
4ad26302d559
(decompose-composite-char): Declare it as obsolete.
Kenichi Handa <handa@m17n.org>
parents:
26880
diff
changeset
|
534 (make-obsolete 'decompose-composite-char 'char-to-string "21.1") |
4ad26302d559
(decompose-composite-char): Declare it as obsolete.
Kenichi Handa <handa@m17n.org>
parents:
26880
diff
changeset
|
535 |
26880 | 536 |
52401 | 537 |
538 ;;; arch-tag: ee703d77-1723-45d4-a31f-e9f0f867aa33 | |
26880 | 539 ;;; composite.el ends here |