+;;; dump-tables.el --- Dump utility of mapping tables
+
+;; Copyright (C) 2002 MORIOKA Tomohiko
+
+;; Author: MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
+;; Keywords: Ideographs, Character Database, UTF-2000, UCS, Unicode
+
+;; This file is a part of tomoyo-tools.
+
+;; This program is free software; you can redistribute it and/or
+;; modify it under the terms of the GNU General Public License as
+;; published by the Free Software Foundation; either version 2, or (at
+;; your option) any later version.
+
+;; This program is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+;; General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program; see the file COPYING. If not, write to
+;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Code:
+
+;;;###autoload
(defun dump-jis-x0208-1990-to-ucs-table (filename)
(interactive "Fdump J90-to-UCS : ")
(if (file-directory-p filename)
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+;;;###autoload
(defun dump-jis-x0212-to-ucs-table (filename)
(interactive "Fdump JSP-to-UCS : ")
(if (file-directory-p filename)
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+;;;###autoload
(defun dump-jis-x0213-1-to-ucs-table (filename)
(interactive "Fdump JX1-to-UCS : ")
(if (file-directory-p filename)
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+;;;###autoload
(defun dump-jis-x0213-2-to-ucs-table (filename)
(interactive "Fdump JX2-to-UCS : ")
(if (file-directory-p filename)
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+;;;###autoload
(defun dump-cns-11643-3-to-ucs-table (filename)
(interactive "Fdump C3-to-UCS : ")
(if (file-directory-p filename)
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+;;;###autoload
(defun dump-cns-11643-4-to-ucs-table (filename)
(interactive "Fdump C4-to-UCS : ")
(if (file-directory-p filename)
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+;;;###autoload
(defun dump-big5-to-ucs-table (filename)
(interactive "Fdump B-to-UCS : ")
(if (file-directory-p filename)
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+;;;###autoload
(defun dump-jef-china3-to-ucs-table (filename)
(interactive "Fdump JC3-to-UCS : ")
(if (file-directory-p filename)
(setq cell (1+ cell)))
(setq row (1+ row))))
(write-region (point-min)(point-max) filename)))
+
+
+;;; @ End.
+;;;
+
+(provide 'dump-tables)
+
+;;; dump-tables.el ends here