(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / leim / quail / py-punct.el
blob53dc296713c7f9635f76f590b2e42441b96a6e83
1 ;;; py-punct.el --- Quail packages for Chinese (pinyin + extra symbols) -*-coding: iso-2022-7bit;-*-
3 ;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
5 ;; Copyright (C) 2001 Free Software Foundation, Inc.
7 ;; Author: Ken'ichi HANDA <handa@etl.go.jp>
9 ;; Keywords: multilingual, input method, Chienese
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;;; Commentary:
30 ;;; Code:
32 (require 'quail)
34 (load "quail/PY")
35 (load "quail/Punct")
37 (quail-define-package
38 "chinese-py-punct" "Chinese-GB" "\e$AF47{\e(B"
40 "\e$A::WVJdHk\e(B \e$AF4Rt7=08\e(B and `v' for \e$A1j5c7{:EJdHk\e(B
42 This is the combination of the input methods `chinese-py' and `chinese-punct'.
43 You can enter normal Chinese characters by the same way as `chinese-py'.
44 And, you can enter symbols by typing `v' followed by any key sequences
45 defined in `chinese-punct'.
47 For instance, typing `v' and `%' insert `\e$A#%\e(B'.
50 (setcar (nthcdr 2 quail-current-package)
51 (copy-sequence (nth 2 (assoc "chinese-py" quail-package-alist))))
53 (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
55 (load "quail/TONEPY")
57 (quail-define-package
58 "chinese-tonepy-punct" "Chinese-GB" "\e$AF47{\e(B"
60 "\e$A::WVJdHk\e(B \e$A4x5wF4Rt7=08\e(B and `v' for \e$A1j5c7{:EJdHk\e(B
62 This is the combination of the input methods `chinese-tonepy' and
63 `chinese-punct'.
65 You can enter normal Chinese characters by the same way as
66 `chinese-tonepy'. And, you can enter symbols by typing `v' followed
67 by any key sequences defined in `chinese-punct'.
69 For instance, typing `v' and `%' insert `\e$A#%\e(B'.
72 (setcar (nthcdr 2 quail-current-package)
73 (copy-sequence (nth 2 (assoc "chinese-tonepy" quail-package-alist))))
75 (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
77 ;;; arch-tag: 941fd2ac-2d26-4b0e-8458-b5e485c5aa7d
78 ;;; py-punct.el ends here