Mercurial > emacs
annotate admin/charsets/mule-charsets.el @ 91595:e8535ac41fad
Regenerated.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Wed, 06 Feb 2008 22:57:25 +0000 |
parents | 0151f4281d67 |
children | eb2d9dfc8486 |
rev | line source |
---|---|
88123 | 1 ;; mule-charsets.el -- Generate Mule-orignal charset maps. |
91419
0151f4281d67
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
2 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 |
88123 | 3 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
4 ;; Registration Number H13PRO009 | |
5 | |
6 ;; This file is part of GNU Emacs. | |
7 | |
8 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
9 ;; it under the terms of the GNU General Public License as published by | |
91419
0151f4281d67
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
10 ;; the Free Software Foundation; either version 3, or (at your option) |
88123 | 11 ;; any later version. |
12 | |
13 ;; GNU Emacs is distributed in the hope that it will be useful, | |
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 ;; GNU General Public License for more details. | |
17 | |
18 ;; You should have received a copy of the GNU General Public License | |
19 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
91419
0151f4281d67
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
20 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
0151f4281d67
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
21 ;; Boston, MA 02110-1301, USA. |
88123 | 22 |
23 (if (or (< emacs-major-version 21) | |
24 (< emacs-minor-version 3) | |
25 (and (= emacs-minor-version 3) | |
26 (string< emacs-version "21.3.50"))) | |
27 (error "Use Emacs of version 21.3.50 or later")) | |
28 | |
29 (defun func (start end) | |
30 (while (<= start end) | |
31 (let ((split (split-char start)) | |
32 (unicode (encode-char start 'ucs))) | |
33 (if unicode | |
34 (if (nth 2 split) | |
91419
0151f4281d67
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
89916
diff
changeset
|
35 (insert (format "0x%02X%02X 0x%04X\n" |
88123 | 36 (nth 1 split) (nth 2 split) unicode)) |
37 (insert (format "0x%02X 0x%04X\n" (nth 1 split) unicode))))) | |
38 (setq start (1+ start)))) | |
39 | |
40 (defconst charset-alist | |
41 '(("MULE-ethiopic.map" . ethiopic) | |
42 ("MULE-ipa.map" . ipa) | |
43 ("MULE-is13194.map" . indian-is13194) | |
44 ("MULE-sisheng.map" . chinese-sisheng) | |
45 ("MULE-tibetan.map" . tibetan) | |
46 ("MULE-lviscii.map" . vietnamese-viscii-lower) | |
47 ("MULE-uviscii.map" . vietnamese-viscii-upper))) | |
48 | |
49 (setq file (car command-line-args-left)) | |
50 (or (stringp file) | |
51 (error "Invalid file name: %s" file)) | |
52 (setq charset (cdr (assoc file charset-alist))) | |
53 (or charset | |
54 (error "Invalid charset: %s" (car command-line-args-left))) | |
55 | |
56 (with-temp-buffer | |
57 (map-charset-chars 'func charset) | |
58 (write-file file)) | |
89916
e0e4e6a0599f
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
88123
diff
changeset
|
59 |
e0e4e6a0599f
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
88123
diff
changeset
|
60 ;;; arch-tag: 515989d7-2e2d-41cc-9163-05ad472fede4 |