Reformatted; fix and/or add some definitions.
[chise/xemacs-chise.git] / lisp / utf-2000 / mojikyo-conf.el
1 ;;; mojikyo-conf.el --- Setting for Mojikyo related coded-charsets
2
3 ;; Copyright (C) 2001,2002 MORIOKA Tomohiko.
4
5 ;; Author: MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
6 ;; Keywords: UTF-2000, ISO/IEC 10646, Unicode, UCS-4, MULE.
7
8 ;; This file is part of XEmacs UTF-2000.
9
10 ;; XEmacs UTF-2000 is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; XEmacs UTF-2000 is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with XEmacs UTF-2000; see the file COPYING.  If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (let ((i 1)
28       name)
29   (while (<= i 21)
30     (setq name (intern (format "mojikyo-pj-%d" i)))
31     (unless (memq name default-coded-charset-priority-list)
32       (setq default-coded-charset-priority-list
33             (append default-coded-charset-priority-list
34                     (list name))))
35     (setq i (1+ i))))
36
37 (unless (memq 'mojikyo-2022-1 default-coded-charset-priority-list)
38   (setq default-coded-charset-priority-list
39         (append default-coded-charset-priority-list
40                 '(mojikyo-2022-1))))
41
42
43 (provide 'mojikyo-conf)
44
45 ;;; mojikyo-conf.el ends here