annotate lisp/language/ind-util.el @ 43232:b88c2aa1a30a

*** empty log message ***
author Pavel Janík <Pavel@Janik.cz>
date Mon, 11 Feb 2002 06:09:53 +0000
parents d8f14ecc9a2e
children e5298463efed 04b31cd7acc5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 ;;; ind-util.el --- Transliteration and Misc. Tools for Indian Languages -*- coding: iso-2022-7bit; -*-
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3 ;; Copyright (C) 2001 Free Software Foundation, Inc.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 ;; Maintainer: KAWABATA, Taichi <batta@beige.ocn.ne.jp>
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Keywords: multilingual, Indian, Devanagari
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 ;; This file is part of GNU Emacs.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; it under the terms of the GNU General Public License as published by
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; any later version.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 ;; GNU Emacs is distributed in the hope that it will be useful,
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; GNU General Public License for more details.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 ;; Boston, MA 02111-1307, USA.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 ;;; Commentary:
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 ;; This file provides conversion between UCS and various
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 ;; transliteration schemes, such as ITRANS, kyoto-harvard and aiba
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 ;; methods. It also provides conversion between IS 13194 and UCS.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;; Finally, this program provides the compatibility support with
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 ;; old implementation of Devanagari script.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 ;;; Code:
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 ;;; Transliteration
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 ;; The followings provide the various transliteration schemes (such as
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 ;; ITRANS, kyoto-harvard, and Aiba) of Indian scripts. They are also
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 ;; used in quail/indian.el for typing Indian script in Emacs.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 (eval-and-compile
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42
42060
f3b460667d31 (range): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 42056
diff changeset
43 (defun indian-regexp-of-hashtbl-keys (hashtbl)
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 "Returns the regular expression of hashtable keys."
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 (let ((max-specpdl-size 1000))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 (regexp-opt
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 (sort
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 (let (dummy)
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
49 (maphash (function (lambda (key val) (setq dummy (cons key dummy))))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
50 hashtbl)
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 dummy)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 (function (lambda (x y) (> (length x) (length y))))))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 (defvar indian-dev-base-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 '(
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 (;; VOWELS (18)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 (?$,15E(B nil) (?$,15F(B ?$,15~(B) (?$,15G(B ?$,15(B) (?$,15H(B ?$,16 (B) (?$,15I(B ?$,16!(B) (?$,15J(B ?$,16"(B)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 (?$,15K(B ?$,16#(B) (?$,15L(B ?$,16$(B) (?$,15M(B ?$,16%(B) (?$,15N(B ?$,16&(B) (?$,15O(B ?$,16'(B) (?$,15P(B ?$,16((B)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 (?$,15Q(B ?$,16)(B) (?$,15R(B ?$,16*(B) (?$,15S(B ?$,16+(B) (?$,15T(B ?$,16,(B) (?$,16@(B ?$,16B(B) (?$,16A(B ?$,16C(B))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 (;; CONSONANTS (currently 42, including special cases)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 ?$,15U(B ?$,15V(B ?$,15W(B ?$,15X(B ?$,15Y(B ;; GUTTRULS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 ?$,15Z(B ?$,15[(B ?$,15\(B ?$,15](B ?$,15^(B ;; PALATALS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 ?$,15_(B ?$,15`(B ?$,15a(B ?$,15b(B ?$,15c(B ;; CEREBRALS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 ?$,15d(B ?$,15e(B ?$,15f(B ?$,15g(B ?$,15h(B ?$,15i(B ;; DENTALS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 ?$,15j(B ?$,15k(B ?$,15l(B ?$,15m(B ?$,15n(B ;; LABIALS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 ?$,15o(B ?$,15p(B ?$,15q(B ?$,15r(B ?$,15s(B ?$,15t(B ?$,15u(B ;; SEMIVOWELS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67 ?$,15v(B ?$,15w(B ?$,15x(B ?$,15y(B ;; SIBILANTS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 ?$,168(B ?$,169(B ?$,16:(B ?$,16;(B ?$,16<(B ?$,16=(B ?$,16>(B ?$,16?(B ;; NUKTAS
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 "$,15\6-5^(B" "$,15U6-5w(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 (;; Misc Symbols (7)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71 ?$,15A(B ?$,15B(B ?$,15C(B ?$,15}(B ?$,16-(B ?$,160(B ?$,16D(B)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
72 (;; Digits (10)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73 ?$,16F(B ?$,16G(B ?$,16H(B ?$,16I(B ?$,16J(B ?$,16K(B ?$,16L(B ?$,16M(B ?$,16N(B ?$,16O(B)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 (;; Inscript-extra (4) (#, $, ^, *, ])
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 "$,16-5p(B" "$,15p6-(B" "$,15d6-5p(B" "$,15v6-5p(B" "$,15|(B")))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 (defvar indian-pnj-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 (defvar indian-ori-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 (defvar indian-bng-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 (defvar indian-asm-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 (defvar indian-tlg-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 (defvar indian-knd-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 (defvar indian-mlm-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 (defvar indian-tml-base-table nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 (defvar indian-base-table-to-language-alist
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 '((indian-dev-base-table . "Devanagari")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 (indian-pnj-base-table . "Punjabi")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 (indian-ori-base-table . "Oriya")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90 (indian-bng-base-table . "Bengali")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 (indian-asm-base-table . "Assamese")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 (indian-tlg-base-table . "Telugu")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 (indian-knd-base-table . "Kannada")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 (indian-mlm-base-table . "Malayalam")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 (indian-tml-base-table . "Tamil")))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 (defvar indian-itrans-v5-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 '(;; for encode/decode
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99 (;; vowels -- 18
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 "a" ("aa" "A") "i" ("ii" "I") "u" ("uu" "U")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 ("RRi" "R^i") ("LLi" "L^i") (".c" "e.c") nil "e" "ai"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 "o.c" nil "o" "au" ("RRI" "R^I") ("LLI" "L^I"))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 (;; consonants -- 40
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 "k" "kh" "g" "gh" ("~N" "N^")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 "ch" ("Ch" "chh") "j" "jh" ("~n" "JN")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 "T" "Th" "D" "Dh" "N"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 "t" "th" "d" "dh" "n" "nh"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 "p" "ph" "b" "bh" "m"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 "y" "r" "rh" "l" ("L" "ld") nil ("v" "w")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 "sh" ("Sh" "shh") "s" "h"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111 "q" "K" "G" ("J" "z") ".D" ".Dh" "f" ("Y" "yh")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112 ("GY" "dny") "x")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 (;; misc -- 7
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114 ".N" (".n" "M") "H" ".a" ".h" ("AUM" "OM") "..")))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 (defvar indian-kyoto-harvard-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 '(;; for encode/decode
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 (;; vowel
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 "a" ("A" "aa") "i" ("I" "ii") "u" ("U" "uu")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 "R" ("L" "lR") nil nil "e" "ai"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 nil nil "o" "au" ("q" "RR" "Q") ("E" "LL" "lRR"))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122 (;; consonant
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 "k" "kh" "g" "gh" "G"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 "c" "ch" "j" "jh" "J"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 "T" "Th" "D" "Dh" "N"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 "t" "th" "d" "dh" "n" nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 "p" "ph" "b" "bh" "m"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 "y" "r" nil "l" "L" nil "v"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 ("z" "Z") "S" "s" "h"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 nil nil nil nil nil nil nil nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 nil nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 (;; misc
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 nil "M" "H" "'" nil "." nil)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 (defvar indian-harvard-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 '(;; for encode/decode
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137 (;; vowel
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 "a" ("A" "aa") "i" ("I" "ii") "u" ("U" "uu")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 "R" ("L" "lR") nil nil "e" "ai"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 nil nil "o" "au" ("RR" "q" "Q") ("LL" "E" "lRR"))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 (;; consonant
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 "k" "kh" "g" "gh" "G"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143 "c" "ch" "j" "jh" "J"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 "T" "Th" "D" "Dh" "N"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 "t" "th" "d" "dh" "n" nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 "p" "ph" "b" "bh" "m"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 "y" "r" nil "l" "L" nil "v"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 ("z" "Z") "S" "s" "h"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 nil nil nil nil nil nil nil nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 nil nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 (;; misc
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 nil "M" "H" "'" nil "." nil)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 (defvar indian-tokyo-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 '(;; for encode/decode
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 (;; vowel
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 "a" ("A" "aa") "i" ("I" "ii") "u" ("U" "uu")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 "R" ("L" "lR") nil nil "e" "ai"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 nil nil "o" "au" ("Q" "RR" "q") ("E" "LL" "lRR"))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 (;; consonant
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 "k" "kh" "g" "gh" "G"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162 "c" "ch" "j" "jh" "J"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 "T" "Th" "D" "Dh" "N"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164 "t" "th" "d" "dh" "n" nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
165 "p" "ph" "b" "bh" "m"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166 "y" "r" nil "l" "L" nil "v"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167 ("Z" "z") "S" "s" "h"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 nil nil nil nil nil nil nil nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 nil nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170 (;; misc
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171 nil "M" "H" "'" nil "." nil)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 (defvar indian-aiba-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 '(;; for encode/decode
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 (;; vowel
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176 "a" "aa" "i" "ii" "u" "uu"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177 ".r" ".l" nil nil "e" "ai"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 nil nil "o" "au" "~r" "~l")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179 (;; consonant
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 "k" "kh" "g" "gh" "^n"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181 "c" "ch" "j" "jh" "~n"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 ".t" ".th" ".d" ".dh" ".n"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 "t" "th" "d" "dh" "n" nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184 "p" "ph" "b" "bh" "m"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185 "y" "r" nil "l" nil nil "v"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 "^s" ".s" "s" "h"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
187 nil nil nil nil nil nil nil nil
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188 nil nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
189 (;; misc
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
190 nil ".m" ".h" "'" nil "." nil)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192 (defun mapthread (function seq1 &rest seqrest)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 "Apply FUNCTION to each element of SEQ1 and return result list.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194 If there are several SEQRESTs, FUNCTION is called with that many
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
195 arguments, with all possible combinations of these multiple SEQUENCES.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 Thus, if SEQ1 contains 3 elements and SEQ2 contains 5 elements, then
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 FUNCTION will be called 15 times."
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
198 (if seqrest
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199 (mapcar
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
200 (lambda (x)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201 (apply
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
202 'mapthread
42070
e904fde74072 (mapthread): Make a closure.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42060
diff changeset
203 `(lambda (&rest y) (apply ',function x y))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
204 seqrest))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 seq1)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 (mapcar function seq1)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
207
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208 (defun indian--puthash-char (char trans-char hashtbls)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
209 (let ((encode-hash (car hashtbls)) ;; char -> trans
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
210 (decode-hash (cdr hashtbls)) ;; trans -> char
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
211 )
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
212 ;; char -- nil / char / string (/ list of vowel & matra)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
213 ;; trans-char -- nil / string / list of strings
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214 (when (and char trans-char)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215 (if (stringp trans-char) (setq trans-char (list trans-char)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216 (if (char-valid-p char) (setq char (char-to-string char)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 (puthash char (car trans-char) encode-hash)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 (mapc
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
219 (lambda (trans)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
220 (puthash trans char decode-hash))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221 trans-char))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
223 (defun indian--map (f l1 l2)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
224 (while l1
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
225 (funcall f (pop l1) (pop l2))))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
226
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227 (defun indian--puthash-v (v trans-v hashtbls)
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
228 (indian--map
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
229 (lambda (v trans-v)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
230 (indian--puthash-char (car v) trans-v hashtbls))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231 v trans-v))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
232
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
233 (defun indian--puthash-c (c trans-c halant hashtbls)
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
234 (indian--map
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
235 (lambda (c trans-c)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
236 (if (char-valid-p c) (setq c (char-to-string c)))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
237 (indian--puthash-char (concat c halant) trans-c hashtbls))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 c trans-c))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
239
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
240 (defun indian--puthash-m (m trans-m hashtbls)
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
241 (indian--map
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
242 (lambda (m trans-m)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
243 (indian--puthash-char m trans-m hashtbls))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 m trans-m))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
245
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
246 (defun indian--puthash-cv (c trans-c v trans-v hashtbls)
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
247 (indian--map
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
248 (lambda (c trans-c)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
249 (indian--map
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
250 (lambda (v trans-v)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
251 (when (and c trans-c v trans-v)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
252 (if (char-valid-p c) (setq c (char-to-string c)))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
253 (setq v (if (char-valid-p (cadr v)) (char-to-string (cadr v)) ""))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
254 (if (stringp trans-c) (setq trans-c (list trans-c)))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
255 (if (stringp trans-v) (setq trans-v (list trans-v)))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
256 (indian--puthash-char
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
257 (concat c v)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
258 (apply 'append
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
259 (mapthread 'concat trans-c trans-v))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
260 hashtbls)))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
261 v trans-v))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
262 c trans-c))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 (defun indian-make-hash (table trans-table)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265 "Indian Transliteration Hash for decode/encode"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
266 (let* ((encode-hash (makehash 'equal))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 (decode-hash (makehash 'equal))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 (hashtbls (cons encode-hash decode-hash))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 (vowels (elt table 0))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270 (consonants (elt table 1))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
271 (misc (elt table 2))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272 (digits (elt table 3))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
273 (halant (char-to-string (elt misc 4)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
274 (trans-vowels (elt trans-table 0))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
275 (trans-consonants (elt trans-table 1))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
276 (trans-misc (elt trans-table 2))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
277 (trans-digits '("0" "1" "2" "3" "4" "5" "6" "7" "8" "9")))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278 (indian--puthash-v vowels trans-vowels hashtbls)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
279 (indian--puthash-c consonants trans-consonants halant hashtbls)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
280 (indian--puthash-cv consonants trans-consonants
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
281 vowels trans-vowels hashtbls)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 (indian--puthash-m misc trans-misc hashtbls)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
283 (indian--puthash-m digits trans-digits hashtbls)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284 hashtbls))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
286 (defvar indian-dev-itrans-v5-hash
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
287 (indian-make-hash indian-dev-base-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
288 indian-itrans-v5-table))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289 (defvar indian-dev-kyoto-harvard-hash
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290 (indian-make-hash indian-dev-base-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
291 indian-kyoto-harvard-table))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
292 (defvar indian-dev-aiba-hash
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293 (indian-make-hash indian-dev-base-table
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
294 indian-aiba-table))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296 )
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
297
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 (defmacro indian-translate-region (from to hashtable encode-p)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
299 `(save-excursion
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
300 (save-restriction
42060
f3b460667d31 (range): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 42056
diff changeset
301 (let ((regexp ,(indian-regexp-of-hashtbl-keys
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302 (if encode-p (car (eval hashtable))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
303 (cdr (eval hashtable))))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
304 (narrow-to-region from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 (goto-char (point-min))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 (while (re-search-forward regexp nil t)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 (let ((matchstr (gethash (match-string 0)
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
308 (if ,encode-p
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
309 (car ,hashtable)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
310 (cdr ,hashtable)))))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 (if matchstr (replace-match matchstr))))))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
312
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
313 ;;;
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315 (defun indian-dev-itrans-v5-encode-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317 (indian-translate-region
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318 from to indian-dev-itrans-v5-hash t))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320 (defun indian-dev-itrans-v5-decode-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
322 (indian-translate-region
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323 from to indian-dev-itrans-v5-hash nil))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325 (defun indian-dev-kyoto-harvard-encode-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 (indian-translate-region
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328 from to indian-dev-kyoto-harvard-hash t))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 (defun indian-dev-kyoto-harvard-decode-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 (indian-translate-region
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 from to indian-dev-kyoto-harvard-hash nil))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 (defun indian-dev-aiba-encode-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 (indian-translate-region
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 from to indian-dev-aiba-hash t))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 (defun indian-dev-aiba-decode-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 (indian-translate-region
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 from to indian-dev-aiba-hash nil))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 ;;; IS 13194 utilities
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 ;; The followings provide conversion between IS 13194 (ISCII) and UCS.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
351
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
352 (defvar ucs-devanagari-to-is13194-alist
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
353 '(;;Unicode vs IS13194 ;; only Devanagari is supported now.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354 (?\x0900 . "[U+0900]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
355 (?\x0901 . "(5!(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
356 (?\x0902 . "(5"(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
357 (?\x0903 . "(5#(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
358 (?\x0904 . "[U+0904]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 (?\x0905 . "(5$(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
360 (?\x0906 . "(5%(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 (?\x0907 . "(5&(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362 (?\x0908 . "(5'(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363 (?\x0909 . "(5((B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
364 (?\x090a . "(5)(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
365 (?\x090b . "(5*(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366 (?\x090c . "(5&i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
367 (?\x090d . "(5.(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
368 (?\x090e . "(5+(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
369 (?\x090f . "(5,(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
370 (?\x0910 . "(5-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
371 (?\x0911 . "(52(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
372 (?\x0912 . "(5/(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373 (?\x0913 . "(50(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
374 (?\x0914 . "(51(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
375 (?\x0915 . "(53(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
376 (?\x0916 . "(54(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
377 (?\x0917 . "(55(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
378 (?\x0918 . "(56(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
379 (?\x0919 . "(57(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
380 (?\x091a . "(58(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
381 (?\x091b . "(59(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
382 (?\x091c . "(5:(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
383 (?\x091d . "(5;(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
384 (?\x091e . "(5<(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
385 (?\x091f . "(5=(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
386 (?\x0920 . "(5>(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
387 (?\x0921 . "(5?(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
388 (?\x0922 . "(5@(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
389 (?\x0923 . "(5A(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
390 (?\x0924 . "(5B(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391 (?\x0925 . "(5C(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
392 (?\x0926 . "(5D(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
393 (?\x0927 . "(5E(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
394 (?\x0928 . "(5F(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395 (?\x0929 . "(5G(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396 (?\x092a . "(5H(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 (?\x092b . "(5I(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
398 (?\x092c . "(5J(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399 (?\x092d . "(5K(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
400 (?\x092e . "(5L(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401 (?\x092f . "(5M(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402 (?\x0930 . "(5O(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
403 (?\x0931 . "(5P(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404 (?\x0932 . "(5Q(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 (?\x0933 . "(5R(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 (?\x0934 . "(5S(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407 (?\x0935 . "(5T(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408 (?\x0936 . "(5U(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
409 (?\x0937 . "(5V(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
410 (?\x0938 . "(5W(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411 (?\x0939 . "(5X(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412 (?\x093a . "[U+093a]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413 (?\x093b . "[U+093b]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
414 (?\x093c . "(5i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
415 (?\x093d . "(5ji(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
416 (?\x093e . "(5Z(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
417 (?\x093f . "(5[(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
418 (?\x0940 . "(5\(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
419 (?\x0941 . "(5](B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
420 (?\x0942 . "(5^(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
421 (?\x0943 . "(5_(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
422 (?\x0944 . "(5_i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
423 (?\x0945 . "(5c(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
424 (?\x0946 . "(5`(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
425 (?\x0947 . "(5a(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
426 (?\x0948 . "(5b(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
427 (?\x0949 . "(5g(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
428 (?\x094a . "(5d(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
429 (?\x094b . "(5e(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
430 (?\x094c . "(5f(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
431 (?\x094d . "(5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
432 (?\x094e . "[U+094e]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
433 (?\x094f . "[U+094f]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
434 (?\x0950 . "(5!i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
435 (?\x0951 . "(5p5(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
436 (?\x0952 . "(5p8(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
437 (?\x0953 . "[DEVANAGARI GRAVE ACCENT]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
438 (?\x0954 . "[DEVANAGARI ACUTE ACCENT]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
439 (?\x0955 . "[U+0955]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
440 (?\x0956 . "[U+0956]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
441 (?\x0957 . "[U+0957]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
442 (?\x0958 . "(53i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443 (?\x0959 . "(54i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444 (?\x095a . "(55i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
445 (?\x095b . "(5:i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
446 (?\x095c . "(5?i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
447 (?\x095d . "(5@i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 (?\x095e . "(5Ii(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
449 (?\x095f . "(5N(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
450 (?\x0960 . "(5*i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451 (?\x0961 . "(5'i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 (?\x0962 . "(5[i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
453 (?\x0963 . "(5ei(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
454 (?\x0964 . "(5j(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
455 (?\x0965 . "(5jj(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456 (?\x0966 . "(5q(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
457 (?\x0967 . "(5r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
458 (?\x0968 . "(5s(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
459 (?\x0969 . "(5t(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
460 (?\x096a . "(5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
461 (?\x096b . "(5v(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
462 (?\x096c . "(5w(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
463 (?\x096d . "(5x(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
464 (?\x096e . "(5y(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
465 (?\x096f . "(5z(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
466 (?\x0970 . "[U+0970]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
467 (?\x0971 . "[U+0971]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
468 (?\x0972 . "[U+0972]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
469 (?\x0973 . "[U+0973]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
470 (?\x0974 . "[U+0974]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
471 (?\x0975 . "[U+0975]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
472 (?\x0976 . "[U+0976]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473 (?\x0977 . "[U+0977]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 (?\x0978 . "[U+0978]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
475 (?\x0979 . "[U+0979]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
476 (?\x097a . "[U+097a]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 (?\x097b . "[U+097b]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478 (?\x097c . "[U+097c]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479 (?\x097d . "[U+097d]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 (?\x097e . "[U+097e]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
481 (?\x097f . "[U+097f]")))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
482
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
483 (defvar ucs-bengali-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484 (defvar ucs-assamese-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485 (defvar ucs-gurmukhi-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486 (defvar ucs-gujarati-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487 (defvar ucs-oriya-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
488 (defvar ucs-tamil-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
489 (defvar ucs-telugu-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
490 (defvar ucs-malayalam-to-is13194-alist nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492 (defvar is13194-default-repartory 'devanagari)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
493
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
494 (defvar is13194-repertory-to-ucs-script
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
495 `((DEF ?\x40 ,is13194-default-repartory)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
496 (RMN ?\x41 ,is13194-default-repartory)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
497 (DEV ?\x42 devanagari)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
498 (BNG ?\x43 bengali)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499 (TML ?\x44 tamil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500 (TLG ?\x45 telugu)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501 (ASM ?\x46 bengali)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502 (ORI ?\x47 oriya)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
503 (KND ?\x48 kannada)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
504 (MLM ?\x49 malayalam)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
505 (GJR ?\x4a gujarati)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506 (PNJ ?\x4b gurmukhi)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 ;; for guiding find-variable function.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 (defvar is13194-to-ucs-devanagari-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 (defvar is13194-to-ucs-devanagari-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511 (defvar is13194-to-ucs-bengali-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 (defvar is13194-to-ucs-bengali-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513 (defvar is13194-to-ucs-assamese-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
514 (defvar is13194-to-ucs-assamese-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
515 (defvar is13194-to-ucs-gurmukhi-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
516 (defvar is13194-to-ucs-gurmukhi-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
517 (defvar is13194-to-ucs-gujarati-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518 (defvar is13194-to-ucs-gujarati-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
519 (defvar is13194-to-ucs-oriya-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
520 (defvar is13194-to-ucs-oriya-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 (defvar is13194-to-ucs-tamil-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 (defvar is13194-to-ucs-tamil-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523 (defvar is13194-to-ucs-telugu-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
524 (defvar is13194-to-ucs-telugu-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
525 (defvar is13194-to-ucs-malayalam-hashtbl nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
526 (defvar is13194-to-ucs-malayalam-regexp nil)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
527
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
528 (mapc
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529 (function (lambda (script)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
530 (let ((hashtable (intern (concat "is13194-to-ucs-"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
531 (symbol-name script) "-hashtbl" )))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
532 (regexp (intern (concat "is13194-to-ucs-"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
533 (symbol-name script) "-regexp"))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 (set hashtable (make-hash-table :test 'equal :size 128))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535 (mapc
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 (function (lambda (x)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537 (put-char-code-property (decode-char 'ucs (car x))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
538 'script script)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
539 (put-char-code-property (decode-char 'ucs (car x))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540 'iscii (cdr x))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
541 (puthash (cdr x) (char-to-string (decode-char 'ucs (car x)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
542 (eval hashtable))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
543 (eval (intern (concat "ucs-" (symbol-name script)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544 "-to-is13194-alist"))))
42060
f3b460667d31 (range): Function deleted.
Richard M. Stallman <rms@gnu.org>
parents: 42056
diff changeset
545 (set regexp (indian-regexp-of-hashtbl-keys (eval hashtable))))))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
546 '(devanagari bengali assamese gurmukhi gujarati
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
547 oriya tamil telugu malayalam))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549 (defvar ucs-to-is13194-regexp
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
550 ;; only Devanagari is supported now.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 (concat "[" (char-to-string (decode-char 'ucs #x0900))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 "-" (char-to-string (decode-char 'ucs #x097f)) "]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553 "Regexp that matches to conversion")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
554
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 (defun ucs-to-iscii-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556 "Converts the indian UCS characters in the region to ISCII.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
557 Returns new end position."
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
558 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
559 ;; only Devanagari is supported now.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
560 (save-excursion
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
561 (save-restriction
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 (narrow-to-region from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
563 (goto-char (point-min))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 (let* ((current-repertory is13194-default-repartory))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565 (while (re-search-forward ucs-to-is13194-regexp nil t)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566 (replace-match
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567 (get-char-code-property (string-to-char (match-string 0))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568 'iscii))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 (point-max))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
570
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 (defun iscii-to-ucs-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572 "Converts the ISCII characters in the region to UCS.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
573 Returns new end position."
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
575 ;; only Devanagari is supported now.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
576 (save-excursion
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
577 (save-restriction
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
578 (narrow-to-region from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
579 (goto-char (point-min))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
580 (let* ((current-repertory is13194-default-repartory)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
581 (current-hashtable
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
582 (intern (concat "is13194-to-ucs-"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
583 (symbol-name current-repertory) "-hashtbl")))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584 (current-regexp
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585 (intern (concat "is13194-to-ucs-"
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586 (symbol-name current-repertory) "-regexp"))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
587 (while (re-search-forward (eval current-regexp) nil t)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588 (replace-match
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589 (gethash (match-string 0) (eval current-hashtable) ""))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
590 (point-max))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
592 ;;;###autoload
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
593 (defun indian-compose-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
594 "Compose the region according to `composition-function-table'. "
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
595 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
596 (save-excursion
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
597 (save-restriction
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
598 (let ((pos from) chars (max to))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
599 (narrow-to-region from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
600 (while (< pos max)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
601 (setq chars (compose-chars-after pos))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
602 (if chars (setq pos (+ pos chars)) (setq pos (1+ pos))))))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
604 ;;;###autoload
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
605 (defun indian-compose-string (string)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606 (with-temp-buffer
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
607 (insert string)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
608 (indian-compose-region (point-min) (point-max))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
609 (buffer-string)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
610
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
611 ;;;###autoload
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
612 (defun in-is13194-post-read-conversion (len)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613 (let ((pos (point)) endpos)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614 (setq endpos (iscii-to-ucs-region pos (+ pos len)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615 (indian-compose-region pos endpos)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
616 (- endpos pos)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
617
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618 ;;;###autoload
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
619 (defun in-is13194-pre-write-conversion (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
620 (let ((buf (current-buffer)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621 (set-buffer (generate-new-buffer " *temp*"))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622 (if (stringp from)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
623 (insert from)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624 (insert-buffer-substring buf from to))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
625 (ucs-to-iscii-region (point-min) (point-max))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
626 nil))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
629
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
630
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
631 ;;; Backward Compatibility support programs
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
632
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
633 ;; The followings provides the conversion from old-implementation of
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
634 ;; Emacs Devanagari script to UCS.
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
635
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
636 (defconst indian-2-colum-to-ucs
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
637 '(
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
638 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
639 ;;2120 $(5!!!"!#!$!%!&!'!(!)!*!+!,!-!.!/(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 ("$(5!!(B" . "$,15A(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
641 ("$(5!"(B" . "$,15B(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 ("$(5!#(B" . "$,15C(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 ("$(5!$(B" . "$,15E(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644 ("$(5!%(B" . "$,15F(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645 ("$(5!&(B" . "$,15G(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 ("$(5!'(B" . "$,15H(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 ("$(5!((B" . "$,15I(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 ("$(5!)(B" . "$,15J(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 ("$(5!*(B" . "$,15K(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 ("$(5!*"p(B" . "$,15p6#(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651 ("$(5!+(B" . "$,15N(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 ("$(5!,(B" . "$,15O(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 ("$(5!-(B" . "$,15P(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 ("$(5!.(B" . "$,15M(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 ("$(5!/(B" . "$,15R(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
656 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
657 ;;2130 $(5!0!1!2!3!4!5!6!7!8!9!:!;!<!=!>!?(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
658 ("$(5!0(B" . "$,15S(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
659 ("$(5!1(B" . "$,15T(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
660 ("$(5!2(B" . "$,15Q(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
661 ("$(5!3(B" . "$,15U(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662 ("$(5!4(B" . "$,15V(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
663 ("$(5!5(B" . "$,15W(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
664 ("$(5!6(B" . "$,15X(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 ("$(5!7(B" . "$,15Y(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 ("$(5!8(B" . "$,15Z(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667 ("$(5!9(B" . "$,15[(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 ("$(5!:(B" . "$,15\(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 ("$(5!;(B" . "$,15](B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
670 ("$(5!<(B" . "$,15^(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 ("$(5!=(B" . "$,15_(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
672 ("$(5!>(B" . "$,15`(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
673 ("$(5!?(B" . "$,15a(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 ;;2140 $(5!@!A!B!C!D!E!F!G!H!I!J!K!L!M!N!O(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676 ("$(5!@(B" . "$,15b(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
677 ("$(5!A(B" . "$,15c(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
678 ("$(5!B(B" . "$,15d(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
679 ("$(5!C(B" . "$,15e(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
680 ("$(5!D(B" . "$,15f(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
681 ("$(5!E(B" . "$,15g(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
682 ("$(5!F(B" . "$,15h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
683 ("$(5!G(B" . "$,15i(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
684 ("$(5!H(B" . "$,15j(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
685 ("$(5!I(B" . "$,15k(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
686 ("$(5!J(B" . "$,15l(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
687 ("$(5!K(B" . "$,15m(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
688 ("$(5!L(B" . "$,15n(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
689 ("$(5!M(B" . "$,15o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
690 ("$(5!N(B" . "$,16?(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
691 ("$(5!O(B" . "$,15p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
692 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
693 ;;2150 $(5!P!Q!R!S!T!U!V!W!X!Y!Z![!\!]!^!_(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
694 ("$(5!P(B" . "$,15q(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695 ("$(5!Q(B" . "$,15r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 ("$(5!R(B" . "$,15s(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697 ("$(5!S(B" . "$,15t(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 ("$(5!T(B" . "$,15u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 ("$(5!U(B" . "$,15v(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700 ("$(5!V(B" . "$,15w(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701 ("$(5!W(B" . "$,15x(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702 ("$(5!X(B" . "$,15y(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 ("$(5!Z(B" . "$,15~(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704 ("$(5![(B" . "$,15(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
705 ("$(5!\(B" . "$,16 (B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
706 ("$(5!](B" . "$,16!(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
707 ("$(5!^(B" . "$,16"(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
708 ("$(5!_(B" . "$,16#(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
709 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
710 ;;2160 $(5!`!a!b!c!d!e!f!g!h!i!j!k!l!m!n!o(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
711 ("$(5!`(B" . "$,16&(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
712 ("$(5!a(B" . "$,16'(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
713 ("$(5!b(B" . "$,16((B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
714 ("$(5!c(B" . "$,16%(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
715 ("$(5!d(B" . "$,16*(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
716 ("$(5!e(B" . "$,16+(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
717 ("$(5!f(B" . "$,16,(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
718 ("$(5!g(B" . "$,16)(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
719 ("$(5!h(B" . "$,16-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
720 ("$(5!i(B" . "$,15|(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
721 ("$(5!j(B" . "$,16D(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
722 ("$(5!j!j(B" . "$,16E(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
723 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
724 ;;2170 $(5!p!q!r!s!t!u!v!w!x!y!z!{!|!}!~(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
725 ("$(5!q(B" . "$,16F(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
726 ("$(5!r(B" . "$,16G(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
727 ("$(5!s(B" . "$,16H(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
728 ("$(5!t(B" . "$,16I(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
729 ("$(5!u(B" . "$,16J(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
730 ("$(5!v(B" . "$,16K(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
731 ("$(5!w(B" . "$,16L(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
732 ("$(5!x(B" . "$,16M(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
733 ("$(5!y(B" . "$,16N(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
734 ("$(5!z(B" . "$,16O(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
735 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
736 ;;2220 $(5"!"""#"$"%"&"'"(")"*"+","-"."/(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
737 ("$(5"!(B" . "$,16;6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
738 ("$(5""(B" . "$,16>6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
739 ("$(5"#(B" . "$,15U6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
740 ("$(5"$(B" . "$,15W6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
741 ("$(5"%(B" . "$,15d6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
742 ("$(5"&(B" . "$,15j6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
743 ("$(5"'(B" . "$,15k6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
744 ("$(5")(B" . "$,15v6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
745 ("$(5",(B" . "$,15p6!(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
746 ("$(5"-(B" . "$,15p6"(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
747 ("$(5".(B" . "$,15q6!(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
748 ("$(5"/(B" . "$,15q6"(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
749 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
750 ;;2230 $(5"0"1"2"3"4"5"6"7"8"9":";"<"=">"?(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
751 ("$(5"3(B" . "$,15U6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
752 ("$(5"4(B" . "$,15V6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
753 ("$(5"5(B" . "$,15W6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
754 ("$(5"6(B" . "$,15X6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
755 ("$(5"8(B" . "$,15Z6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
756 ("$(5"8"q(B" . "$,15Z6-5p6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
757 ("$(5":(B" . "$,15\6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
758 ("$(5";(B" . "$,15]6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
759 ("$(5"<(B" . "$,15^6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
760 ("$(5"<(B" . "$,15^6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
761 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
762 ;;2240 $(5"@"A"B"C"D"E"F"G"H"I"J"K"L"M"N"O(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
763 ("$(5"A(B" . "$,15c6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
764 ("$(5"B(B" . "$,15d6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
765 ("$(5"C(B" . "$,15e6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
766 ("$(5"E(B" . "$,15g6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
767 ("$(5"F(B" . "$,15h6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
768 ("$(5"G(B" . "$,15i6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
769 ("$(5"H(B" . "$,15j6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
770 ("$(5"I(B" . "$,15k6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
771 ("$(5"J(B" . "$,15l6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
772 ("$(5"J(B" . "$,15l6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
773 ("$(5"K(B" . "$,15m6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774 ("$(5"L(B" . "$,15n6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
775 ("$(5"M(B" . "$,15o6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776 ("$(5"N(B" . "$,16?6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
777 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
778 ;;2250 $(5"P"Q"R"S"T"U"V"W"X"Y"Z"["\"]"^"_(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
779 ("$(5"Q(B" . "$,15r6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
780 ("$(5"R(B" . "$,15s6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
781 ("$(5"S(B" . "$,15t6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
782 ("$(5"T(B" . "$,15u6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
783 ("$(5"U(B" . "$,15v6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
784 ("$(5"V(B" . "$,15w6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
785 ("$(5"W(B" . "$,15x6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
786 ("$(5"](B" . "$,16-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
787 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
788 ;;2260 $(5"`"a"b"c"d"e"f"g"h"i"j"k"l"m"n"o(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
789 ("$(5"`(B" . "$,15W6-5p6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
790 ("$(5"a(B" . "$,15X6-5h6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
791 ("$(5"c(B" . "$,15d6-5d6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
792 ("$(5"d(B" . "$,15d6-5p6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
793 ("$(5"e(B" . "$,15g6-5h6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
794 ("$(5"f(B" . "$,15g6-5p6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
795 ("$(5"g(B" . "$,15j6-5d6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
796 ("$(5"h(B" . "$,15v6-5Z6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
797 ("$(5"i(B" . "$,15v6-5p6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
798 ("$(5"j(B" . "$,15v6-5u6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
799 ("$(5"k(B" . "$,15h6-5h6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
800 ("$(5"l(B" . "$,15U6-5w6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
801 ("$(5"m(B" . "$,15\6-5^6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
802 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
803 ;;2270 $(5"p"q"r"s"t"u"v"w"x"y"z"{"|"}"~(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
804 ("$(5"p(B" . "$,15p6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
805 ("$(5"q(B" . "$,16-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
806 ("$(5"r(B" . "$,16-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
807 ("$(5"s(B" . "$,1686-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
808 ("$(5"t(B" . "$,1696-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
809 ("$(5"u(B" . "$,16:6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
810 ("$(5"y(B" . "$,16>6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
811 ("$(5"z(B" . "$,16;6-(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
812 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813 ;;2320 $(5#!#"###$#%#&#'#(#)#*#+#,#-#.#/(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
814 ("$(5#!(B" . "$,160(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
815 ("$(5#&(B" . "$,15L(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
816 ("$(5#&"p(B" . "$,15p6$(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
817 ("$(5#'(B" . "$,16A(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
818 ("$(5#'"p(B" . "$,15p6C(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
819 ("$(5#*(B" . "$,16@(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
820 ("$(5#*"p(B" . "$,15p6B(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
821 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
822 ;;2330 $(5#0#1#2#3#4#5#6#7#8#9#:#;#<#=#>#?(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
823 ("$(5#3(B" . "$,168(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
824 ("$(5#4(B" . "$,169(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
825 ("$(5#5(B" . "$,16:(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
826 ("$(5#:(B" . "$,16;(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
827 ("$(5#?(B" . "$,16<(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
828 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
829 ;;2340 $(5#@#A#B#C#D#E#F#G#H#I#J#K#L#M#N#O(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
830 ("$(5#@(B" . "$,16=(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
831 ("$(5#I(B" . "$,16>(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
832 ("$(5#J(B" . "$,15}(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
833 ("$(5#K(B" . "$,16$(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
834 ("$(5#L(B" . "$,16B(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
835 ("$(5#M(B" . "$,16C(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
836 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
837 ;;2350 $(5#P#Q#R#S#T#U#V#W#X#Y#Z#[#\#]#^#_(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
838 ("$(5#P(B" . "$,15n6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
839 ("$(5#Q(B" . "$,15n6-5r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
840 ("$(5#R(B" . "$,15y6#(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
841 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
842 ;;2360 $(5#`#a#b#c#d#e#f#g#h#i#j#k#l#m#n#o(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
843 ("$(5#`(B" . "$,15r6-5r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
844 ("$(5#a(B" . "$,15u6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
845 ("$(5#b(B" . "$,15u6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846 ("$(5#c(B" . "$,15v6-5Z(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
847 ("$(5#d(B" . "$,15v6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
848 ("$(5#e(B" . "$,15v6-5l(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
849 ("$(5#f(B" . "$,15v6-5r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
850 ("$(5#g(B" . "$,15v6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
851 ("$(5#h(B" . "$,15w6-5_6-5p6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
852 ("$(5#i(B" . "$,15w6-5_6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
853 ("$(5#j(B" . "$,15w6-5_6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
854 ("$(5#k(B" . "$,15w6-5_(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
855 ("$(5#l(B" . "$,15w6-5`(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
856 ("$(5#m(B" . "$,15x6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
857 ("$(5#n(B" . "$,15x6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
858 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
859 ;;2370 $(5#p#q#r#s#t#u#v#w#x#y#z#{#|#}#~(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
860 ("$(5#p(B" . "$,15y6-5c(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
861 ("$(5#q(B" . "$,15y6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
862 ("$(5#r(B" . "$,15y6-5n(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
863 ("$(5#s(B" . "$,15y6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
864 ("$(5#t(B" . "$,15y6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
865 ("$(5#u(B" . "$,15y6-5r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
866 ("$(5#v(B" . "$,15y6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
867 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
868 ;;2420 $(5$!$"$#$$$%$&$'$($)$*$+$,$-$.$/(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
869 ("$(5$!(B" . "$,15U6-5d6-5p6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
870 ("$(5$"(B" . "$,15U6-5d6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
871 ("$(5$#(B" . "$,15U6-5d6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872 ("$(5$$(B" . "$,15U6-5h6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
873 ("$(5$%(B" . "$,15U6-5p6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874 ("$(5$&(B" . "$,15U6-5u6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875 ("$(5$'(B" . "$,15U6-5U(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 ("$(5$((B" . "$,15U6-5d(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
877 ("$(5$)(B" . "$,15U6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
878 ("$(5$*(B" . "$,15U6-5n(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
879 ("$(5$+(B" . "$,15U6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
880 ("$(5$,(B" . "$,15U6-5r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
881 ("$(5$-(B" . "$,15U6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
882 ("$(5$.(B" . "$,15U6-5w(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
883 ("$(5$/(B" . "$,15X6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
884 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
885 ;;2430 $(5$0$1$2$3$4$5$6$7$8$9$:$;$<$=$>$?(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
886 ("$(5$0(B" . "$,15Y6-5U6-5d6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
887 ("$(5$1(B" . "$,15Y6-5U6-5w6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
888 ("$(5$2(B" . "$,15Y6-5U6-5d(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
889 ("$(5$3(B" . "$,15Y6-5U6-5w(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
890 ("$(5$4(B" . "$,15Y6-5X6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
891 ("$(5$5(B" . "$,15Y6-5U6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
892 ("$(5$6(B" . "$,15Y6-5V6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
893 ("$(5$7(B" . "$,15Y6-5W6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
894 ("$(5$8(B" . "$,15Y6-5X6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
895 ("$(5$9(B" . "$,15Y6-5U(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
896 ("$(5$:(B" . "$,15Y6-5V(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
897 ("$(5$;(B" . "$,15Y6-5W(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
898 ("$(5$<(B" . "$,15Y6-5X(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
899 ("$(5$=(B" . "$,15Y6-5Y(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
900 ("$(5$>(B" . "$,15Y6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
901 ("$(5$?(B" . "$,15Y6-5n(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
902 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
903 ;;2440 $(5$@$A$B$C$D$E$F$G$H$I$J$K$L$M$N$O(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
904 ("$(5$@(B" . "$,15Y6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
905 ("$(5$A(B" . "$,15Z6-5Z(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
906 ("$(5$B(B" . "$,15Z6-5^(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
907 ("$(5$C(B" . "$,15[6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
908 ("$(5$D(B" . "$,15\6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
909 ("$(5$E(B" . "$,15\6-5^(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
910 ("$(5$F(B" . "$,15^6-5Z(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
911 ("$(5$G(B" . "$,15^6-5\(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
912 ("$(5$H(B" . "$,15_6-5U(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
913 ("$(5$I(B" . "$,15_6-5_(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
914 ("$(5$J(B" . "$,15_6-5`(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
915 ("$(5$K(B" . "$,15_6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
916 ("$(5$L(B" . "$,15`6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
917 ("$(5$M(B" . "$,15a6-5W6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
918 ("$(5$N(B" . "$,15a6-5X6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
919 ("$(5$O(B" . "$,15a6-5p6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
920 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
921 ;;2450 $(5$P$Q$R$S$T$U$V$W$X$Y$Z$[$\$]$^$_(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
922 ("$(5$P(B" . "$,15a6-5W(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
923 ("$(5$Q(B" . "$,15a6-5X(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
924 ("$(5$R(B" . "$,15a6-5a(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
925 ("$(5$S(B" . "$,15a6-5n(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
926 ("$(5$T(B" . "$,15a6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
927 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
928 ;;2460 $(5$`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
929 ("$(5$`(B" . "$,15b6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
930 ("$(5$a(B" . "$,15d6-5d(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
931 ("$(5$b(B" . "$,15d6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
932 ("$(5$c(B" . "$,15f6-5f6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
933 ("$(5$d(B" . "$,15f6-5g6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934 ("$(5$e(B" . "$,15f6-5m6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
935 ("$(5$f(B" . "$,15f6-5p6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
936 ("$(5$g(B" . "$,15f6-5u6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
937 ("$(5$h(B" . "$,15f6-5W6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
938 ("$(5$i(B" . "$,15f6-5X6-5p(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
939 ("$(5$j(B" . "$,15f6-5f6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
940 ("$(5$k(B" . "$,15f6-5g6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
941 ("$(5$l(B" . "$,15f6-5W(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
942 ("$(5$m(B" . "$,15f6-5X(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
943 ("$(5$n(B" . "$,15f6-5f(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
944 ("$(5$o(B" . "$,15f6-5g(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
945 ;; 0 1 2 3 4 5 6 7 8 9 a b c d e f
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
946 ;;2470 $(5$p$q$r$s$t$u$v$w$x$y$z${$|$}$~(B
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
947 ("$(5$p(B" . "$,15f6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
948 ("$(5$q(B" . "$,15f6-5l(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
949 ("$(5$r(B" . "$,15f6-5m(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
950 ("$(5$s(B" . "$,15f6-5n(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
951 ("$(5$t(B" . "$,15f6-5o(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
952 ("$(5$u(B" . "$,15f6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
953 ("$(5$v(B" . "$,15g6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
954 ("$(5$w(B" . "$,15h6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
955 ("$(5$x(B" . "$,15j6-5d(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
956 ("$(5$y(B" . "$,15j6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
957 ("$(5$z(B" . "$,15j6-5r(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
958 ("$(5${(B" . "$,15l6-5h(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
959 ("$(5$|(B" . "$,15l6-5l(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
960 ("$(5$}(B" . "$,15l6-5u(B")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
961 ("$(5$~(B" . "$,15m6-5h(B")))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
962
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
963 (defconst indian-2-column-to-ucs-regexp
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
964 "$(5!j!j(B\\|$(5"8"q(B\\|[$(5#&#'!*#*(B]$(5"p(B\\|[$(5!!(B-$(5$~(B]")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
965
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
966 (put 'indian-2-column-to-ucs-chartable 'char-table-extra-slots 1)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
967 (defconst indian-2-column-to-ucs-chartable
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
968 (let ((table (make-char-table 'indian-2-column-to-ucs-chartable))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
969 (alist nil))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
970 (dolist (elt indian-2-colum-to-ucs)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
971 (if (= (length (car elt)) 1)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
972 (aset table (aref (car elt) 0) (cdr elt))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
973 (setq alist (cons elt alist))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
974 (set-char-table-extra-slot table 0 alist)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
975 table))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
976
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
977 (defun indian-2-column-to-ucs-region (from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
978 "Convert old Emacs Devanagari characters to UCS."
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
979 (interactive "r")
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
980 (save-excursion
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
981 (save-restriction
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982 (let ((pos from)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983 (alist (char-table-extra-slot indian-2-column-to-ucs-chartable 0)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984 (narrow-to-region from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
985 (decompose-region from to)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
986 (goto-char (point-min))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
987 (while (re-search-forward indian-2-column-to-ucs-regexp nil t)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
988 (let ((len (- (match-end 0) (match-beginning 0)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
989 subst)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
990 (if (= len 1)
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
991 (setq subst (aref indian-2-column-to-ucs-chartable
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
992 (char-after (match-beginning 0))))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 (setq subst (assoc (match-string 0) alist)))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994 (replace-match (if subst subst "?"))))
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
995 (indian-compose-region (point-min) (point-max))))))
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
996
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
997 ;;;###autoload
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
998 (defun indian-glyph-char (index &optional script)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
999 "Return character of charset `indian-glyph' made from glyph index INDEX.
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1000 The variable `indian-default-script' specifies the script of the glyph.
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1001 Optional argument SCRIPT, if non-nil, overrides `indian-default-script'.
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1002 See also the function `indian-char-glyph'."
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1003 (or script
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1004 (setq script indian-default-script))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1005 (let ((offset (get script 'indian-glyph-code-offset)))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1006 (or (integerp offset)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1007 (error "Invalid script name: %s" script))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1008 (or (and (>= index 0) (< index 256))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1009 (error "Invalid glyph index: %d" index))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1010 (setq index (+ offset index))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1011 (make-char 'indian-glyph (+ (/ index 96) 32) (+ (% index 96) 32))))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1012
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1013 (defvar indian-glyph-max-char
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1014 (indian-glyph-char
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1015 255 (aref indian-script-table (1- (length indian-script-table))))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1016 "The maximum valid code of characters in the charset `indian-glyph'.")
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1017
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1018 ;;;###autoload
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1019 (defun indian-char-glyph (char)
42111
d8f14ecc9a2e (indian-char-glyph): Fix typo in doc-string.
Pavel Janík <Pavel@Janik.cz>
parents: 42070
diff changeset
1020 "Return information about the glyph code for CHAR of `indian-glyph' charset.
42056
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1021 The value is (INDEX . SCRIPT), where INDEX is the glyph index
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1022 in the font that Indian script name SCRIPT specifies.
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1023 See also the function `indian-glyph-char'."
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1024 (let ((split (split-char char))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1025 code)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1026 (or (eq (car split) 'indian-glyph)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1027 (error "Charset of `%c' is not indian-glyph" char))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1028 (or (<= char indian-glyph-max-char)
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1029 (error "Invalid indian-glyph char: %d" char))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1030 (setq code (+ (* (- (nth 1 split) 32) 96) (nth 2 split) -32))
6ef6e34cdba4 Don't require cl.
Dave Love <fx@gnu.org>
parents: 41470
diff changeset
1031 (cons (% code 256) (aref indian-script-table (/ code 256)))))
41470
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1032
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1033 (provide 'ind-util)
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1034
a43bf477cba7 New file.
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1035 ;;; ind-util.el ends here