Mercurial > emacs
annotate lisp/language/devan-util.el @ 89191:06c052d0f579
*** empty log message ***
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Thu, 10 Oct 2002 09:03:32 +0000 |
| parents | 4b2c6fea90ce |
| children | bb4ce770b305 |
| rev | line source |
|---|---|
| 89141 | 1 ;;; devan-util.el --- Support for composing Devanagari characters -*-coding: iso-2022-7bit;-*- |
| 17052 | 2 |
| 41469 | 3 ;; Copyright (C) 2001 Free Software Foundation, Inc. |
| 17052 | 4 |
| 41469 | 5 ;; Maintainer: KAWABATA, Taichi <batta@beige.ocn.ne.jp> |
| 6 ;; Keywords: multilingual, Devanagari | |
| 17052 | 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 | |
|
17314
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17300
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
|
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17300
diff
changeset
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
f438ebf1c679
Fix FSF address in comment.
Kenichi Handa <handa@m17n.org>
parents:
17300
diff
changeset
|
23 ;; Boston, MA 02111-1307, USA. |
| 17052 | 24 |
| 41469 | 25 ;; Created: Feb. 17. 2001 |
| 26 | |
| 17052 | 27 ;;; Commentary: |
| 28 | |
| 41469 | 29 ;; This file provides character(Unicode) to glyph(CDAC) conversion and |
| 30 ;; composition of Devanagari script characters. | |
| 17052 | 31 |
| 32 ;;; Code: | |
| 33 | |
| 41599 | 34 ;;;###autoload |
| 26894 | 35 |
| 41469 | 36 ;; Devanagari Composable Pattern |
| 37 ;; C .. Consonants | |
| 38 ;; V .. Vowel | |
| 39 ;; H .. Halant | |
| 40 ;; M .. Matra | |
| 41 ;; V .. Vowel | |
| 42 ;; A .. Anuswar | |
| 43 ;; D .. Chandrabindu | |
| 44 ;; (N .. Zerowidth Non Joiner) | |
| 45 ;; (J .. Zerowidth Joiner. ) | |
| 46 ;; 1. vowel | |
| 47 ;; V(A/D)? | |
| 48 ;; 2. syllable : maximum of 5 consecutive consonants. (e.g. kartsnya) | |
| 41602 | 49 ;; ((CH)?(CH)?(CH)?CH)?C(H|M?(A|D)?)? |
| 17052 | 50 |
| 41469 | 51 (defconst devanagari-consonant |
| 52 "[$,15U(B-$,15y68(B-$,16?(B]") | |
| 17052 | 53 |
| 41469 | 54 (defconst devanagari-composable-pattern |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
55 (concat |
| 41469 | 56 "\\([$,15E(B-$,15T6@6A(B][$,15A5B(B]?\\)\\|$,15C(B" |
| 57 "\\|\\(" | |
| 58 "\\(?:\\(?:[$,15U(B-$,15y68(B-$,16?(B]$,16-(B\\)?\\(?:[$,15U(B-$,15y68(B-$,16?(B]$,16-(B\\)?\\(?:[$,15U(B-$,15y68(B-$,16?(B]$,16-(B\\)?[$,15U(B-$,15y68(B-$,16?(B]$,16-(B\\)?" | |
| 59 "[$,15U(B-$,15y68(B-$,16?(B]\\(?:$,16-(B\\|[$,15~(B-$,16-6B6C(B]?[$,15B5A(B]?\\)?" | |
| 60 "\\)") | |
| 61 "Regexp matching a composable sequence of Devanagari characters.") | |
| 17052 | 62 |
| 41469 | 63 (defun devanagari-compose-region (from to) |
|
17300
01d528c5dd18
Handle more Devanagari characters correctly.
Kenichi Handa <handa@m17n.org>
parents:
17087
diff
changeset
|
64 (interactive "r") |
| 26894 | 65 (save-excursion |
| 66 (save-restriction | |
| 67 (narrow-to-region from to) | |
| 68 (goto-char (point-min)) | |
| 41469 | 69 (while (re-search-forward devanagari-composable-pattern nil t) |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
70 (devanagari-compose-syllable-region (match-beginning 0) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
71 (match-end 0)))))) |
| 41469 | 72 (defun devanagari-compose-string (string) |
| 73 (with-temp-buffer | |
| 74 (insert (decompose-string string)) | |
| 75 (devanagari-compose-region (point-min) (point-max)) | |
| 76 (buffer-string))) | |
| 77 | |
|
42054
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
78 (defun devanagari-post-read-conversion (len) |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
79 (save-excursion |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
80 (save-restriction |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
81 (let ((buffer-modified-p (buffer-modified-p))) |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
82 (narrow-to-region (point) (+ (point) len)) |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
83 (devanagari-compose-region (point-min) (point-max)) |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
84 (set-buffer-modified-p buffer-modified-p) |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
85 (- (point-max) (point-min)))))) |
|
144a811f0590
(devanagari-post-read-conversion): New
Dave Love <fx@gnu.org>
parents:
41602
diff
changeset
|
86 |
|
42061
0332665b9445
(devanagari-range): Renamed from `range'. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
42054
diff
changeset
|
87 (defun devanagari-range (from to) |
| 41469 | 88 "Make the list of the integers of range FROM to TO." |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
89 (let (result) |
| 41469 | 90 (while (<= from to) (setq result (cons to result) to (1- to))) result)) |
| 91 | |
|
42061
0332665b9445
(devanagari-range): Renamed from `range'. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
42054
diff
changeset
|
92 (defun devanagari-regexp-of-hashtbl-keys (hashtbl) |
|
0332665b9445
(devanagari-range): Renamed from `range'. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
42054
diff
changeset
|
93 "Return a regular expression that matches all keys in hashtable HASHTBL." |
| 41469 | 94 (let ((max-specpdl-size 1000)) |
| 95 (regexp-opt | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
96 (sort |
| 41469 | 97 (let (dummy) |
| 98 (maphash (function (lambda (key val) (setq dummy (cons key dummy)))) hashtbl) | |
| 99 dummy) | |
| 100 (function (lambda (x y) (> (length x) (length y)))))))) | |
| 101 | |
| 102 (defun devanagari-composition-function (from to pattern &optional string) | |
| 103 "Compose Devanagari characters in REGION, or STRING if specified. | |
| 104 Assume that the REGION or STRING must fully match the composable | |
| 105 PATTERN regexp." | |
| 106 (if string (devanagari-compose-syllable-string string) | |
| 107 (devanagari-compose-syllable-region from to)) | |
| 108 (- to from)) | |
| 109 | |
| 110 ;; Register a function to compose Devanagari characters. | |
| 111 (mapc | |
| 112 (function (lambda (ucs) | |
|
88616
1e2984f890a6
Add coding tag, avoid decode-char.
Dave Love <fx@gnu.org>
parents:
42311
diff
changeset
|
113 (aset composition-function-table ucs |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
114 (list (cons devanagari-composable-pattern |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
115 'devanagari-composition-function))))) |
|
42061
0332665b9445
(devanagari-range): Renamed from `range'. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
42054
diff
changeset
|
116 (nconc '(#x0903) (devanagari-range #x0905 #x0939) (devanagari-range #x0958 #x0961))) |
| 41469 | 117 |
| 118 ;; Notes on conversion steps. | |
| 17052 | 119 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
120 ;; 1. chars to glyphs |
| 41469 | 121 ;; |
| 122 ;; Rules will not be applied to the halant appeared at the end of the | |
| 123 ;; text. Also, the preceding/following "r" will be treated as special case. | |
| 124 | |
| 125 ;; 2. glyphs reordering. | |
| 126 ;; | |
| 127 ;; The glyphs are split by halant, and each glyph groups are | |
| 128 ;; re-ordered in the following order. | |
| 129 ;; | |
| 130 ;; Note that `consonant-glyph' mentioned here does not contain the | |
| 131 ;; vertical bar (right modifier) attached at the right of the | |
| 132 ;; consonant. | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
133 ;; |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
134 ;; If the glyph-group contains right modifier, |
| 41469 | 135 ;; (1) consonant-glyphs/vowels, with nukta sign |
| 136 ;; (2) spacing | |
| 137 ;; (3) right modifier (may be matra) | |
| 138 ;; (4) top matra | |
| 139 ;; (5) preceding "r" | |
| 140 ;; (6) anuswar | |
| 141 ;; (7) following "r" | |
| 142 ;; (8) bottom matra or halant. | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
143 ;; |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
144 ;; Otherwise, |
| 41469 | 145 ;; (1) consonant-glyph/vowels, with nukta sign |
| 146 ;; (3) left matra | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
147 ;; (4) top matra |
| 41469 | 148 ;; (5) preceding "r" |
| 149 ;; (6) anuswar | |
| 150 ;; (7) following "r" | |
| 151 ;; (8) bottom matra or halant. | |
| 152 ;; (2) spacing | |
| 153 | |
| 154 ;; 3. glyph to glyph | |
| 155 ;; | |
| 156 ;; For better display, some glyph display would be tuned. | |
| 157 | |
| 158 ;; 4. Composition. | |
| 159 ;; | |
| 160 ;; left modifiers will be attached at the left. | |
| 161 ;; others will be attached right. | |
| 162 | |
| 163 ;; Problem:: | |
| 164 ;; Can we generalize this methods to other Indian scripts? | |
| 17052 | 165 |
| 41523 | 166 (defvar dev-char-glyph |
| 167 '(("$,15E(B" . "$,4 K(B") | |
| 41599 | 168 ("$,15F(B" . "$,4 K")(B") |
| 169 ("$,15~(B" . "$,4")(B") | |
| 41523 | 170 ("$,15G(B" . "$,4 \(B") |
| 41599 | 171 ("$,15(B" . "$,4"*(B") |
| 172 ("$,155A(B" . "$,4"*(B\$,4"&(B") | |
| 41523 | 173 ("$,15H(B" . "$,4 \"'(B") |
| 41599 | 174 ("$,15H5A(B" . "$,4 \"'"&(B") |
| 175 ("$,16 (B" . "$,4"2(B") | |
| 176 ("$,16 5A(B" . "$,4"2"&(B") | |
| 41523 | 177 ("$,15I(B" . "$,4 ](B") |
| 41599 | 178 ("$,16!(B" . "$,4"6(B") |
| 179 ("$,15J(B" . "$,4 ^"P(B") | |
| 180 ("$,16"(B" . "$,4":(B") | |
| 181 ("$,15K(B" . "$,4 `"Q(B") | |
| 182 ("$,16#(B" . "$,4">(B") | |
| 41523 | 183 ;;("$,15L(B" . nil) ; not implemented. |
| 41599 | 184 ("$,16$(B" . "$,4"?(B") |
| 185 ("$,15M(B" . "$,4 b"L(B") | |
| 186 ("$,15M5A(B" . "$,4 b"$(B") | |
| 187 ("$,15M5B(B" . "$,4 b"$(B") | |
| 188 ("$,16%(B" . "\$,4"L(B") | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
189 ("$,15N(B" . "$,4 b"@(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
190 ("$,15N5A(B" . "$,4 b"@"&(B") |
| 41599 | 191 ("$,16&(B" . "\$,4"@(B") |
| 192 ("$,16&5A(B" . "\$,4"@(B\$,4"&(B") | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
193 ("$,15O(B" . "$,4 b(B") |
| 41599 | 194 ("$,16'(B" . "\$,4"D(B") |
| 195 ("$,16'5A(B" . "\$,4"D(B\$,4"&(B") | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
196 ("$,15P(B" . "$,4 b"D(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
197 ("$,15P5A(B" . "$,4 b"D"&(B") |
| 41599 | 198 ("$,16((B" . "\$,4"H(B") |
| 199 ("$,16(5A(B" . "\$,4"H(B\$,4"&(B") | |
| 200 ("$,15Q(B" . "$,4 K")"L(B") ;; special rule for reodering. | |
| 201 ("$,15Q5A(B" . "$,4 K")"$(B") | |
| 202 ("$,15Q5B(B" . "$,4 K")"$(B") | |
| 203 ("$,16)(B" . "\$,4")"L(B") | |
| 204 ("$,16)5A(B" . "\$,4")"$(B") | |
| 205 ("$,16)5B(B" . "\$,4")"$(B") | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
206 ("$,15R(B" . "$,4 K")"@(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
207 ("$,15R5A(B" . "$,4 K")"@"&(B") |
| 41599 | 208 ("$,16*(B" . "\$,4")"@(B") |
| 209 ("$,16*5A(B" . "\$,4")"@"&(B") | |
| 210 ("$,15S(B" . "$,4 K")"D(B") | |
| 211 ("$,15S5A(B" . "$,4 K")"D"&(B") | |
| 212 ("$,16+(B" . "\$,4")"D(B") | |
| 213 ("$,16+5A(B" . "\$,4")"D"&(B") | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
214 ("$,15T(B" . "$,4 K")"H(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
215 ("$,15T5A(B" . "$,4 K")"H"&(B") |
| 41599 | 216 ("$,16,(B" . "\$,4")"H(B") |
| 217 ("$,16,5A(B" . "\$,4")"H"&(B") | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
218 ("$,16@(B" . "$,4 a"Q(B") |
| 41523 | 219 ;;("$,16B(B" . nil) |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
220 ;;("$,16A(B" . nil) |
| 41523 | 221 ;;("$,16C(B" . nil) |
| 41469 | 222 |
| 41523 | 223 ;; GRUTTALS |
| 41599 | 224 ("$,15U(B" . "$,4 e"R(B") |
| 41523 | 225 ("$,15U6-(B" . "$,4 c(B") |
| 41599 | 226 ("$,15U6-5p(B" . "$,4 g"R(B") |
| 227 ("$,15U6-5d(B" . "$,4 h"R(B") | |
| 228 ("$,15U6-5w(B" . "$,4 i")(B") | |
| 41523 | 229 ("$,15U6-5w6-(B" . "$,4 i(B") |
| 41469 | 230 |
| 41599 | 231 ("$,15V(B" . "$,4 j")(B") |
| 41523 | 232 ("$,15V6-(B" . "$,4 j(B") |
| 41599 | 233 ("$,15V6-5p(B" . "$,4 l")(B") |
| 41523 | 234 ("$,15V6-5p6-(B" . "$,4 l(B") |
| 41469 | 235 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
236 ("$,15W(B" . "$,4 m")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
237 ("$,15W6-(B" . "$,4 m(B") |
| 41599 | 238 ("$,15W6-5p(B" . "$,4 o")(B") |
| 41523 | 239 ("$,15W6-5p6-(B" . "$,4 o(B") |
| 41469 | 240 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
241 ("$,15X(B" . "$,4 p")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
242 ("$,15X6-(B" . "$,4 p(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
243 ("$,15X6-5p(B" . "$,4 q")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
244 ("$,15X6-5p6-(B" . "$,4 q(B") |
| 41469 | 245 |
| 41599 | 246 ("$,15Y(B" . "$,4 r"S(B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
247 ;; PALATALS |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
248 ("$,15Z(B" . "$,4 s")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
249 ("$,15Z6-(B" . "$,4 s(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
250 ("$,15Z6-5p(B" . "$,4 t")(B") |
| 41523 | 251 ("$,15Z6-5p6-(B" . "$,4 t(B") |
| 41469 | 252 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
253 ("$,15[(B" . "$,4 u"T(B") |
| 41469 | 254 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
255 ("$,15\(B" . "$,4 v")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
256 ("$,15\6-(B" . "$,4 v(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
257 ("$,15\6-5p(B" . "$,4 x")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
258 ("$,15\6-5p6-(B" . "$,4 x(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
259 ("$,15\6-5^(B" . "$,4 y")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
260 ("$,15\6-5^6-(B" . "$,4 y(B") |
| 17052 | 261 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
262 ("$,15](B" . "$,4 z")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
263 ("$,15]6-(B" . "$,4 z(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
264 ("$,15]6-5p(B" . "$,4 {")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
265 ("$,15]6-5p6-(B" . "$,4 {(B") |
| 41469 | 266 |
| 41599 | 267 ("$,15^(B" . "$,4 |")(B") |
| 41523 | 268 ("$,15^6-(B" . "$,4 |(B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
269 ;; CEREBRALS |
| 41599 | 270 ("$,15_(B" . "$,4 }"U(B") |
| 271 ("$,15_6-5_(B" . "$,4 ~"U(B") | |
| 272 ("$,15_6-5`(B" . "$,4 "U(B") | |
| 41469 | 273 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
274 ("$,15`(B" . "$,4! "V(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
275 ("$,15`6-5`(B" . "$,4!!"V(B") |
| 41469 | 276 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
277 ("$,15a(B" . "$,4!""W(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
278 ("$,15a6-5a(B" . "$,4!$"W(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
279 ("$,15a6-5b(B" . "$,4!%"W(B") |
| 41469 | 280 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
281 ("$,15b(B" . "$,4!&"X(B") |
| 41469 | 282 |
| 41599 | 283 ("$,15c(B" . "$,4!(")(B") |
| 41523 | 284 ("$,15c6-(B" . "$,4!((B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
285 ;; DENTALS |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
286 ("$,15d(B" . "$,4!)")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
287 ("$,15d6-(B" . "$,4!)(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
288 ("$,15d6-5p(B" . "$,4!*")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
289 ("$,15d6-5p6-(B" . "$,4!*(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
290 ("$,15d6-5d(B" . "$,4!+")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
291 ("$,15d6-5d6-(B" . "$,4!+(B") |
| 41469 | 292 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
293 ("$,15e(B" . "$,4!,")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
294 ("$,15e6-(B" . "$,4!,(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
295 ("$,15e6-5p(B" . "$,4!-")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
296 ("$,15e6-5p6-(B" . "$,4!-(B") |
| 41469 | 297 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
298 ("$,15f(B" . "$,4!."Y(B") |
| 41599 | 299 ("$,15f6#(B" . "$,4!/"Y(B") |
| 300 ("$,15f6-5p(B" . "$,4!0"Y(B") | |
| 301 ("$,15f6-5f(B" . "$,4!1"Y(B") | |
| 302 ("$,15f6-5g(B" . "$,4!2"Y(B") | |
| 41523 | 303 ("$,15f6-5n(B" . "$,4!3(B") |
| 304 ("$,15f6-5o(B" . "$,4!4(B") | |
| 41599 | 305 ("$,15f6-5u(B" . "$,4!5"Y(B") |
|
17773
f1ece95d00c2
(in-is13194-devanagari-post-read-conversion): New function.
Kenichi Handa <handa@m17n.org>
parents:
17314
diff
changeset
|
306 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
307 ("$,15g(B" . "$,4!6")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
308 ("$,15g6-(B" . "$,4!6(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
309 ("$,15g6-5p(B" . "$,4!7")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
310 ("$,15g6-5p6-(B" . "$,4!7(B") |
| 41469 | 311 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
312 ("$,15h(B" . "$,4!8")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
313 ("$,15h6-(B" . "$,4!8(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
314 ("$,15h6-5p(B" . "$,4!9")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
315 ("$,15h6-5p6-(B" . "$,4!9")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
316 ("$,15h6-5h(B" . "$,4!:")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
317 ("$,15h6-5h6-(B" . "$,4!:(B") |
| 41469 | 318 |
| 41599 | 319 ("$,15i(B" . "$,4!8"#")(B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
320 ;; LABIALS |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
321 ("$,15j(B" . "$,4!;")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
322 ("$,15j6-(B" . "$,4!;(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
323 ("$,15j6-5p(B" . "$,4!<")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
324 ("$,15j6-5p6-(B" . "$,4!<(B") |
| 41469 | 325 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
326 ("$,15k(B" . "$,4!a"[(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
327 ("$,15k6-(B" . "$,4!=(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
328 ("$,15k6-5p(B" . "$,4!c"[(B") |
| 41469 | 329 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
330 ("$,15l(B" . "$,4!d")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
331 ("$,15l6-(B" . "$,4!d(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
332 ("$,15l6-5p(B" . "$,4!e")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
333 ("$,15l6-5p6-(B" . "$,4!e(B") |
| 41469 | 334 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
335 ("$,15m(B" . "$,4!f")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
336 ("$,15m6-(B" . "$,4!f(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
337 ("$,15m6-5p(B" . "$,4!g")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
338 ("$,15m6-5p6-(B" . "$,4!g(B") |
| 41469 | 339 |
| 41599 | 340 ("$,15n(B" . "$,4!h")(B") |
| 41523 | 341 ("$,15n6-(B" . "$,4!h(B") |
| 41599 | 342 ("$,15n6-5p(B" . "$,4!i")(B") |
| 41523 | 343 ("$,15n6-5p6-(B" . "$,4!i(B") |
| 344 ;; SEMIVOWELS | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
345 ("$,15o(B" . "$,4!j")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
346 ("$,15o6-(B" . "$,4!j(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
347 ("$,15o6-5p(B" . "$,4!k")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
348 ("$,15o6-5p6-(B" . "$,4!k(B") |
| 41523 | 349 ("$,16-5o(B" . "$,4!l(B") ;; when every ohter lig. fails. |
| 41469 | 350 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
351 ("$,15p(B" . "$,4!n"W(B") |
| 41523 | 352 ;; ("$,15p6-(B" . "\$,4"'(B") ;; special case. only the topmost pos. |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
353 ("$,15q(B" . "$,4!n"#"W(B") |
| 41523 | 354 ("$,15q6-(B" . "$,4!m(B") ;; IS 13194 speical rule. |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
355 ("$,15p6!(B" . "$,4!o"[(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
356 ("$,15p6"(B" . "$,4!p"\(B") |
| 17052 | 357 |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
358 ("$,15r(B" . "$,4!q")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
359 ("$,15r6-(B" . "$,4!q(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
360 ("$,15s(B" . "$,4!s(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
361 ("$,15s6-(B" . "$,4!r(B") |
| 41599 | 362 ("$,15t(B" . "$,4!s"#(B") |
| 363 ("$,15t6-(B" . "$,4!r"#(B") | |
| 41469 | 364 |
| 41599 | 365 ("$,15u(B" . "$,4!t")(B") |
| 41523 | 366 ("$,15u6-(B" . "$,4!t(B") |
| 41599 | 367 ("$,15u6-5p(B" . "$,4!u")(B") |
| 41523 | 368 ("$,15u6-5p6-(B" . "$,4!u(B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
369 ;; SIBILANTS |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
370 ("$,15v(B" . "$,4!v")(B") |
| 41523 | 371 ("$,15v6-(B" . "$,4!v(B") |
| 41599 | 372 ("$,15v6-5u(B" . "$,4!w")(B") |
| 41523 | 373 ("$,15v6-5u6-(B" . "$,4!w(B") |
| 41599 | 374 ("$,15v6-5p(B" . "$,4!x")(B") |
| 41523 | 375 ("$,15v6-5p6-(B" . "$,4!x(B") |
| 41469 | 376 |
| 41599 | 377 ("$,15w(B" . "$,4!y")(B") |
| 41523 | 378 ("$,15w6-(B" . "$,4!y(B") |
| 41599 | 379 ("$,15x(B" . "$,4!z")(B") |
| 41523 | 380 ("$,15x6-(B" . "$,4!z(B") |
| 41599 | 381 ("$,15x6-5p(B" . "$,4!{")(B") |
| 41523 | 382 ("$,15x6-5p6-(B" . "$,4!{(B") |
|
17300
01d528c5dd18
Handle more Devanagari characters correctly.
Kenichi Handa <handa@m17n.org>
parents:
17087
diff
changeset
|
383 |
| 41523 | 384 ("$,15y(B" . "$,4!}(B") |
| 385 ("$,15y6-(B" . "$,4!|(B") | |
| 386 ("$,15y6#(B" . "$,4!~(B") | |
| 387 ("$,15y6-5p(B" . "$,4!(B") | |
| 41599 | 388 ("$,15y6-5n(B" . "$,4" (B") |
| 389 ("$,15y6-5o(B" . "$,4"!(B") | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
390 ;; NUKTAS |
| 41599 | 391 ("$,168(B" . "$,4 f"R"S(B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
392 ("$,1686-(B" . "$,4 d(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
393 ("$,169(B" . "$,4 k")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
394 ("$,1696-(B" . "$,4 k(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
395 ("$,16:(B" . "$,4 n")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
396 ("$,16:6-(B" . "$,4 n(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
397 ("$,16;(B" . "$,4 w")(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
398 ("$,16;6-(B" . "$,4 w(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
399 ("$,16<(B" . "$,4!#"W(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
400 ("$,16=(B" . "$,4!'"X(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
401 ("$,16>(B" . "$,4!b"[(B") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
402 ("$,16>6-(B" . "$,4!>(B") |
| 41599 | 403 ("$,16?(B" . "$,4!j"#")(B") |
| 41523 | 404 ;; misc modifiers. |
| 41599 | 405 ("$,15A(B" . "\$,4"$(B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
406 ("$,15B(B" . "\$,4"&(B") |
| 41523 | 407 ("$,15C(B" . "$,4 F(B") |
| 41599 | 408 ("$,15|(B" . "$,4"#(B") |
| 41523 | 409 ("$,15}(B" . "$,4 E(B") |
| 41599 | 410 ("$,16-(B" . "$,4""(B") |
| 411 ("$,16-5p(B" . "$,4"%(B") ;; following "r" | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
412 ;; ("$,160(B" . "$,4 D(B") |
| 41523 | 413 ;; ("$,16D(B" . "$,4 J(B") |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
414 ;; ("$,16F(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
415 ;; ("$,16G(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
416 ;; ("$,16H(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
417 ;; ("$,16I(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
418 ;; ("$,16J(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
419 ;; ("$,16K(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
420 ;; ("$,16L(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
421 ;; ("$,16M(B" . "") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
422 ;; ("$,16N(B" . "") |
| 41523 | 423 ;; ("$,16O(B" . "") |
| 424 ) | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
425 "Devanagari characters to glyphs conversion table. |
| 41523 | 426 Default value contains only the basic rules. You may add your own |
| 427 preferred rule from the sanskrit fonts." ) | |
| 41469 | 428 |
| 429 (defvar dev-char-glyph-hash | |
| 430 (let* ((hash (makehash 'equal))) | |
| 431 (mapc (function (lambda (x) (puthash (car x) (cdr x) hash))) | |
| 432 dev-char-glyph) | |
| 433 hash)) | |
| 434 | |
| 435 (defvar dev-char-glyph-regexp | |
|
42061
0332665b9445
(devanagari-range): Renamed from `range'. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
42054
diff
changeset
|
436 (devanagari-regexp-of-hashtbl-keys dev-char-glyph-hash)) |
| 41469 | 437 |
| 438 ;; glyph-to-glyph conversion table. | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
439 ;; it is supposed that glyphs are ordered in |
| 41469 | 440 ;; [consonant/nukta] - [matra/halant] - [preceding-r] - [anuswar]. |
| 441 | |
| 41523 | 442 (defvar dev-glyph-glyph |
| 41599 | 443 '(("\$,4"'(B\$,4"&(B" . "\$,4"((B") |
| 444 ("\$,4"'(B\$,4"$(B" . "\$,4"((B") | |
| 445 ("$,4"*(B\$,4"&(B" . "$,4"+(B") | |
| 446 ("$,4"*(B\$,4"'(B" . "$,4",(B") | |
| 447 ("$,4"*(B\$,4"'(B\$,4"&(B" . "$,4"-(B") | |
| 448 ("$,4"2(B\$,4"&(B" . "$,4"3(B") | |
| 449 ("$,4"2(B\$,4"'(B" . "$,4"4(B") | |
| 450 ("$,4"2(B\$,4"'(B\$,4"&(B" . "$,4"5(B") | |
| 451 ("$,4"#(B\$,4"6(B" . "$,4"7(B") | |
| 452 ("$,4"%(B\$,4"6(B" . "$,4"8(B") | |
| 453 ;;("$,4"6(B" . "$,4"9(B") | |
| 454 ("$,4"#(B\$,4":(B" . "$,4";(B") | |
| 455 ("$,4"%(B\$,4":(B" . "$,4"<(B") | |
| 456 ;;("$,4":(B" . "$,4"=(B") | |
| 457 ("\$,4"@(B\$,4"&(B" . "\$,4"A(B") | |
| 458 ("\$,4"@(B\$,4"'(B" . "\$,4"B(B") | |
| 459 ("\$,4"@(B\$,4"'(B\$,4"&(B" . "\$,4"C(B") | |
| 460 ("\$,4"D(B\$,4"&(B" . "\$,4"E(B") | |
| 461 ("\$,4"D(B\$,4"'(B" . "\$,4"F(B") | |
| 462 ("\$,4"D(B\$,4"'(B\$,4"&(B" . "\$,4"G(B") | |
| 463 ("\$,4"H(B\$,4"&(B" . "\$,4"I(B") | |
| 464 ("\$,4"H(B\$,4"'(B" . "\$,4"J(B") | |
| 465 ("\$,4"H(B\$,4"'(B\$,4"&(B" . "\$,4"K(B") | |
| 466 ("\$,4"L(B\$,4"&(B" . "\$,4"M(B") | |
| 467 ("\$,4"L(B\$,4"'(B" . "\$,4"N(B") | |
| 468 ("\$,4"L(B\$,4"'(B\$,4"&(B" . "\$,4"O(B") | |
| 41523 | 469 )) |
| 41469 | 470 (defvar dev-glyph-glyph-hash |
| 471 (let* ((hash (makehash 'equal))) | |
| 472 (mapc (function (lambda (x) (puthash (car x) (cdr x) hash))) | |
| 473 dev-glyph-glyph) | |
| 474 hash)) | |
| 475 (defvar dev-glyph-glyph-regexp | |
|
42061
0332665b9445
(devanagari-range): Renamed from `range'. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
42054
diff
changeset
|
476 (devanagari-regexp-of-hashtbl-keys dev-glyph-glyph-hash)) |
| 41469 | 477 |
| 478 | |
| 479 ;; yet another glyph-to-glyph conversions. | |
| 41523 | 480 (defvar dev-glyph-glyph-2 |
| 41599 | 481 '(("$,4"*(B" . "$,4".(B") |
| 482 ("$,4"+(B" . "$,4"/(B") | |
| 483 ("$,4",(B" . "$,4"0(B") | |
| 484 ("$,4"-(B" . "$,4"1(B"))) | |
| 41469 | 485 (defvar dev-glyph-glyph-2-hash |
| 486 (let* ((hash (makehash 'equal))) | |
| 487 (mapc (function (lambda (x) (puthash (car x) (cdr x) hash))) | |
| 488 dev-glyph-glyph-2) | |
| 489 hash)) | |
| 490 (defvar dev-glyph-glyph-2-regexp | |
|
42061
0332665b9445
(devanagari-range): Renamed from `range'. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
42054
diff
changeset
|
491 (devanagari-regexp-of-hashtbl-keys dev-glyph-glyph-2-hash)) |
| 41469 | 492 |
| 493 | |
| 494 (defun dev-charseq (from &optional to) | |
| 495 (if (null to) (setq to from)) | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
496 (devanagari-range (make-char 'devanagari-glyph from) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
497 (make-char 'devanagari-glyph to))) |
|
17300
01d528c5dd18
Handle more Devanagari characters correctly.
Kenichi Handa <handa@m17n.org>
parents:
17087
diff
changeset
|
498 |
| 41469 | 499 (defvar dev-glyph-cvn |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
500 (append |
| 41469 | 501 (dev-charseq #x2b) |
| 502 (dev-charseq #x3c #xc1) | |
| 503 (dev-charseq #xc3)) | |
| 504 "Devanagari Consonants/Vowels/Nukta Glyphs") | |
| 505 | |
| 506 (defvar dev-glyph-space | |
| 507 (dev-charseq #xf0 #xfe) | |
| 508 "Devanagari Spacing Glyphs") | |
| 509 | |
| 510 (defvar dev-glyph-right-modifier | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
511 (append |
| 41469 | 512 (dev-charseq #xc9) |
| 513 (dev-charseq #xd2 #xd5)) | |
| 514 "Devanagari Modifiers attached at the right side.") | |
| 515 | |
| 516 (defvar dev-glyph-right-modifier-regexp | |
| 517 (concat "[" dev-glyph-right-modifier "]")) | |
| 518 | |
| 519 (defvar dev-glyph-left-matra | |
| 520 (dev-charseq #xca #xd1) | |
| 521 "Devanagari Matras attached at the left side.") | |
| 522 | |
| 523 (defvar dev-glyph-top-matra | |
| 524 (dev-charseq #xe0 #xef) | |
| 525 "Devanagari Matras attached at the top side.") | |
| 526 | |
| 527 (defvar dev-glyph-bottom-modifier | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
528 (append |
| 41469 | 529 (dev-charseq #xd6 #xdf) |
| 530 (dev-charseq #xc2)) | |
| 531 "Devanagari Modifiers attached at the bottom.") | |
| 532 | |
| 533 (defvar dev-glyph-order | |
| 534 `((,dev-glyph-cvn . 1) | |
| 535 (,dev-glyph-space . 2) | |
| 536 (,dev-glyph-right-modifier . 3) | |
| 537 (,dev-glyph-left-matra . 3) ;; processed by reference point. | |
| 538 (,dev-glyph-top-matra . 4) | |
| 539 (,(dev-charseq #xc7 #xc8) . 5) | |
| 540 (,(dev-charseq #xc6) . 6) | |
| 541 (,(dev-charseq #xc5) . 7) | |
| 542 (,dev-glyph-bottom-modifier . 8))) | |
| 543 | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
544 (mapc |
| 41469 | 545 (function (lambda (x) |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
546 (mapc |
| 41469 | 547 (function (lambda (y) |
| 548 (put-char-code-property y 'composition-order (cdr x)))) | |
| 549 (car x)))) | |
| 550 dev-glyph-order) | |
| 551 | |
| 552 (mapc | |
| 553 (function (lambda (x) | |
| 554 (put-char-code-property x 'reference-point '(3 . 5)))) | |
| 555 dev-glyph-left-matra) | |
| 556 | |
| 557 (defun devanagari-compose-syllable-string (string) | |
| 558 (with-temp-buffer | |
| 559 (insert (decompose-string string)) | |
| 560 (devanagari-compose-syllable-region (point-min) (point-max)) | |
| 561 (buffer-string))) | |
|
17300
01d528c5dd18
Handle more Devanagari characters correctly.
Kenichi Handa <handa@m17n.org>
parents:
17087
diff
changeset
|
562 |
| 41523 | 563 (defun devanagari-compose-syllable-region (from to) |
| 564 "Compose devanagari syllable in region FROM to TO." | |
| 565 (let ((glyph-str nil) (cons-num 0) glyph-str-list | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
566 (last-halant nil) (preceding-r nil) (last-modifier nil) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
567 (last-char (char-before to)) match-str |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
568 glyph-block split-pos) |
| 41523 | 569 (save-excursion |
| 570 (save-restriction | |
|
89096
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
571 ;;; *** char-to-glyph conversion *** |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
572 ;; Special rule 1. -- Last halant must be preserved. |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
573 (if (eq last-char ?$,16-(B) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
574 (progn |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
575 (setq last-halant t) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
576 (narrow-to-region from (1- to))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
577 (narrow-to-region from to) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
578 ;; note if the last char is modifier. |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
579 (if (or (eq last-char ?$,15A(B) (eq last-char ?$,15B(B)) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
580 (setq last-modifier t))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
581 (goto-char (point-min)) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
582 ;; Special rule 2. -- preceding "r halant" must be modifier. |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
583 (when (looking-at "$,15p6-(B.") |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
584 (setq preceding-r t) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
585 (goto-char (+ 2 (point)))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
586 ;; translate the rest characters into glyphs |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
587 (while (re-search-forward dev-char-glyph-regexp nil t) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
588 (setq match-str (match-string 0)) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
589 (setq glyph-str |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
590 (concat glyph-str |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
591 (gethash match-str dev-char-glyph-hash))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
592 ;; count the number of consonant-glyhs. |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
593 (if (string-match devanagari-consonant match-str) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
594 (setq cons-num (1+ cons-num)))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
595 ;; preceding-r must be attached before the anuswar if exists. |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
596 (if preceding-r |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
597 (if last-modifier |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
598 (setq glyph-str (concat (substring glyph-str 0 -1) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
599 "$,4"'(B" (substring glyph-str -1))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
600 (setq glyph-str (concat glyph-str "$,4"'(B")))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
601 (if last-halant (setq glyph-str (concat glyph-str "$,4""(B"))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
602 ;;; *** glyph-to-glyph conversion *** |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
603 (when (string-match dev-glyph-glyph-regexp glyph-str) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
604 (setq glyph-str |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
605 (replace-match (gethash (match-string 0 glyph-str) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
606 dev-glyph-glyph-hash) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
607 nil t glyph-str)) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
608 (if (and (> cons-num 1) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
609 (string-match dev-glyph-glyph-2-regexp glyph-str)) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
610 (setq glyph-str |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
611 (replace-match (gethash (match-string 0 glyph-str) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
612 dev-glyph-glyph-2-hash) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
613 nil t glyph-str)))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
614 ;;; *** glyph reordering *** |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
615 (while (setq split-pos (string-match "$,4""(B\\|.$" glyph-str)) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
616 (setq glyph-block (substring glyph-str 0 (1+ split-pos))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
617 (setq glyph-str (substring glyph-str (1+ split-pos))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
618 (setq |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
619 glyph-block |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
620 (if (string-match dev-glyph-right-modifier-regexp glyph-block) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
621 (sort (string-to-list glyph-block) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
622 (function (lambda (x y) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
623 (< (get-char-code-property x 'composition-order) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
624 (get-char-code-property y 'composition-order))))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
625 (sort (string-to-list glyph-block) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
626 (function (lambda (x y) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
627 (let ((xo (get-char-code-property x 'composition-order)) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
628 (yo (get-char-code-property y 'composition-order))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
629 (if (= xo 2) nil (if (= yo 2) t (< xo yo))))))))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
630 (setq glyph-str-list (nconc glyph-str-list glyph-block))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
631 ;; concatenate and attach reference-points. |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
632 (setq glyph-str |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
633 (cdr |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
634 (apply |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
635 'nconc |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
636 (mapcar |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
637 (function (lambda (x) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
638 (list |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
639 (or (get-char-code-property x 'reference-point) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
640 '(5 . 3) ;; default reference point. |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
641 ) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
642 x))) |
|
856a479d9c34
(dev-charseq): Avoid indian-glyph-char.
Dave Love <fx@gnu.org>
parents:
88616
diff
changeset
|
643 glyph-str-list)))))) |
| 41523 | 644 (compose-region from to glyph-str))) |
|
17300
01d528c5dd18
Handle more Devanagari characters correctly.
Kenichi Handa <handa@m17n.org>
parents:
17087
diff
changeset
|
645 |
|
18309
bd8b521f5218
Provide XXX-util instead of
Kenichi Handa <handa@m17n.org>
parents:
18203
diff
changeset
|
646 (provide 'devan-util) |
| 42311 | 647 |
| 648 ;;; devan-util.el ends here |
