root/trunk/leim/quail/py-punct.el

Revision 4220, 2.7 kB (checked in by miyoshi, 9 months ago)

Sync up with Emacs22.2.

  • Property svn:eol-style set to LF
Line 
1 ;;; py-punct.el --- Quail packages for Chinese (pinyin + extra symbols)  -*-coding: iso-2022-7bit;-*-
2
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 ;;   Free Software Foundation, Inc.
5 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
6 ;;   2006, 2007, 2008
7 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
8 ;;   Registration Number H14PRO021
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
16 ;; GNU Emacs is free software; you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation; either version 3, or (at your option)
19 ;; any later version.
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
27 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
28 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 ;; Boston, MA 02110-1301, USA.
30
31 ;;; Commentary:
32
33 ;;; Code:
34
35 (require 'quail)
36
37 (load "quail/PY")
38 (load "quail/Punct")
39
40 (quail-define-package
41  "chinese-py-punct" "Chinese-GB" "$AF47{(B"
42  t
43  "$A::WVJdHk(B $AF4Rt7=08(B and `v' for $A1j5c7{:EJdHk(B
44
45 This is the combination of the input methods `chinese-py' and `chinese-punct'.
46 You can enter normal Chinese characters by the same way as `chinese-py'.
47 And, you can enter symbols by typing `v' followed by any key sequences
48 defined in `chinese-punct'.
49
50 For instance, typing `v' and `%' insert `$A#%(B'.
51 ")
52
53 (setcar (nthcdr 2 quail-current-package)
54         (copy-sequence (nth 2 (assoc "chinese-py" quail-package-alist))))
55
56 (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
57
58 (load "quail/TONEPY")
59
60 (quail-define-package
61  "chinese-tonepy-punct" "Chinese-GB" "$AF47{(B"
62  t
63  "$A::WVJdHk(B $A4x5wF4Rt7=08(B and `v' for $A1j5c7{:EJdHk(B
64
65 This is the combination of the input methods `chinese-tonepy' and
66 `chinese-punct'.
67
68 You can enter normal Chinese characters by the same way as
69 `chinese-tonepy'.  And, you can enter symbols by typing `v' followed
70 by any key sequences defined in `chinese-punct'.
71
72 For instance, typing `v' and `%' insert `$A#%(B'.
73 ")
74
75 (setcar (nthcdr 2 quail-current-package)
76         (copy-sequence (nth 2 (assoc "chinese-tonepy" quail-package-alist))))
77
78 (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
79
80 ;;; arch-tag: 941fd2ac-2d26-4b0e-8458-b5e485c5aa7d
81 ;;; py-punct.el ends here
82
Note: See TracBrowser for help on using the browser.