Merge from emacs-23
[bpt/emacs.git] / leim / quail / py-punct.el
CommitLineData
123f4a5e 1;;; py-punct.el --- Quail packages for Chinese (pinyin + extra symbols) -*-coding: iso-2022-7bit;-*-
029eaa11 2
5df4f04c 3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
03ba6797
GM
4;; Free Software Foundation, Inc.
5;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5df4f04c 6;; 2006, 2007, 2008, 2009, 2010, 2011
698218a2
KH
7;; National Institute of Advanced Industrial Science and Technology (AIST)
8;; Registration Number H14PRO021
029eaa11
KH
9
10;; Author: Ken'ichi HANDA <handa@etl.go.jp>
11
12;; Keywords: multilingual, input method, Chienese
13
14;; This file is part of GNU Emacs.
15
3d544458 16;; GNU Emacs is free software: you can redistribute it and/or modify
029eaa11 17;; it under the terms of the GNU General Public License as published by
3d544458
GM
18;; the Free Software Foundation, either version 3 of the License, or
19;; (at your option) any later version.
029eaa11
KH
20
21;; GNU Emacs is distributed in the hope that it will be useful,
22;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24;; GNU General Public License for more details.
25
26;; You should have received a copy of the GNU General Public License
3d544458 27;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
029eaa11 28
be567141
PJ
29;;; Commentary:
30
31;;; Code:
32
05e60fc0
KH
33(require 'quail)
34
029eaa11
KH
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
e6788ea8
KH
43This is the combination of the input methods `chinese-py' and `chinese-punct'.
44You can enter normal Chinese characters by the same way as `chinese-py'.
029eaa11 45And, you can enter symbols by typing `v' followed by any key sequences
e6788ea8 46defined in `chinese-punct'.
029eaa11
KH
47
48For instance, typing `v' and `%' insert `\e$A#%\e(B'.
49")
50
51(setcar (nthcdr 2 quail-current-package)
852027b6 52 (copy-sequence (nth 2 (assoc "chinese-py" quail-package-alist))))
029eaa11
KH
53
54(quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
e6788ea8
KH
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
63This is the combination of the input methods `chinese-tonepy' and
64`chinese-punct'.
65
66You can enter normal Chinese characters by the same way as
67`chinese-tonepy'. And, you can enter symbols by typing `v' followed
68by any key sequences defined in `chinese-punct'.
69
70For instance, typing `v' and `%' insert `\e$A#%\e(B'.
71")
72
852027b6
GM
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)))
be567141 77
3d544458 78;; arch-tag: 941fd2ac-2d26-4b0e-8458-b5e485c5aa7d
be567141 79;;; py-punct.el ends here