Initial Commit
[packages] / mule-packages / leim / quail / py-punct.el
1 ;;; py-punct.el --- Quail packages for Chinese (pinyin + extra symbols)  -*-coding: iso-2022-7bit;-*-
2
3 ;; Copyright (C) 2001, 2006 Free Software Foundation, Inc.
4 ;; Copyright (C) 1997, 2000
5 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
6 ;;   Registration Number H14PRO021
7
8 ;; Author: Ken'ichi HANDA <handa@etl.go.jp>
9
10 ;; Keywords: multilingual, input method, Chienese
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
27 ;; Boston, MA 02110-1301, USA.
28
29 ;;; Commentary:
30
31 ;;; Code:
32
33 (require 'quail)
34
35 (load "quail/PY")
36 (load "quail/Punct")
37
38 (quail-define-package
39  "chinese-py-punct" "Chinese-GB" "\e$AF47{\e(B"
40  t
41  "\e$A::WVJdHk\e(B \e$AF4Rt7=08\e(B and `v' for \e$A1j5c7{:EJdHk\e(B
42
43 This is the combination of the input methods `chinese-py' and `chinese-punct'.
44 You can enter normal Chinese characters by the same way as `chinese-py'.
45 And, you can enter symbols by typing `v' followed by any key sequences
46 defined in `chinese-punct'.
47
48 For instance, typing `v' and `%' insert `\e$A#%\e(B'.
49 ")
50
51 (setcar (nthcdr 2 quail-current-package)
52         (copy-sequence (nth 2 (assoc "chinese-py" quail-package-alist))))
53
54 (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
55
56 (load "quail/TONEPY")
57
58 (quail-define-package
59  "chinese-tonepy-punct" "Chinese-GB" "\e$AF47{\e(B"
60  t
61  "\e$A::WVJdHk\e(B \e$A4x5wF4Rt7=08\e(B and `v' for \e$A1j5c7{:EJdHk\e(B
62
63 This is the combination of the input methods `chinese-tonepy' and
64 `chinese-punct'.
65
66 You can enter normal Chinese characters by the same way as
67 `chinese-tonepy'.  And, you can enter symbols by typing `v' followed
68 by any key sequences defined in `chinese-punct'.
69
70 For instance, typing `v' and `%' insert `\e$A#%\e(B'.
71 ")
72
73 (setcar (nthcdr 2 quail-current-package)
74         (copy-sequence (nth 2 (assoc "chinese-tonepy" quail-package-alist))))
75
76 (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
77
78 ;;; arch-tag: 941fd2ac-2d26-4b0e-8458-b5e485c5aa7d
79 ;;; py-punct.el ends here