aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa1997-07-15 08:27:10 +0000
committerKenichi Handa1997-07-15 08:27:10 +0000
commit029eaa116613d8dff107ebfd0e76825e0d52e5e9 (patch)
tree645e32b5304e110bfe53a5024b3a56599a59f7d4
parent72388e595a15454a023469ac357f51bf81c42059 (diff)
downloademacs-029eaa116613d8dff107ebfd0e76825e0d52e5e9.tar.gz
emacs-029eaa116613d8dff107ebfd0e76825e0d52e5e9.zip
Initial revision
-rw-r--r--leim/quail/py-punct.el46
-rw-r--r--leim/quail/pypunct-b5.el47
2 files changed, 93 insertions, 0 deletions
diff --git a/leim/quail/py-punct.el b/leim/quail/py-punct.el
new file mode 100644
index 00000000000..7b8f6e2e82b
--- /dev/null
+++ b/leim/quail/py-punct.el
@@ -0,0 +1,46 @@
1;; quail/py-punct.el -- Quail packages for Chinese (pinyin + extra symbols)
2
3;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
4;; Licensed to the Free Software Foundation.
5
6;; Author: Ken'ichi HANDA <handa@etl.go.jp>
7
8;; Keywords: multilingual, input method, Chienese
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the
24;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25;; Boston, MA 02111-1307, USA.
26
27(load "quail/PY")
28(load "quail/Punct")
29
30(quail-define-package
31 "chinese-py-punct" "Chinese-GB" "$AF47{(B"
32 t
33 "$A::WVJdHk(B $AF4Rt7=08(B and `v' for $A1j5c7{:EJdHk(B
34
35This is the combination of Quail packages \"chinese-py\" and \"chinese-punct\".
36You can enter normal Chinese characters by the same way as \"chinese-py\".
37And, you can enter symbols by typing `v' followed by any key sequences
38defined in \"chinese-punct\".
39
40For instance, typing `v' and `%' insert `$A#%(B'.
41")
42
43(setcar (nthcdr 2 quail-current-package)
44 (nth 2 (assoc "chinese-py" quail-package-alist)))
45
46(quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
diff --git a/leim/quail/pypunct-b5.el b/leim/quail/pypunct-b5.el
new file mode 100644
index 00000000000..7cb9e16b389
--- /dev/null
+++ b/leim/quail/pypunct-b5.el
@@ -0,0 +1,47 @@
1;; quail/py-punct-b5.el -- Quail packages for Chinese (pinyin + extra symbols)
2
3;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
4;; Licensed to the Free Software Foundation.
5
6;; Author: Ken'ichi HANDA <handa@etl.go.jp>
7
8;; Keywords: multilingual, input method, Chienese
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the
24;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25;; Boston, MA 02111-1307, USA.
26
27(load "quail/PY-b5")
28(load "quail/Punct-b5")
29
30(quail-define-package
31 "chinese-py-punct-b5" "Chinese-BIG5" "$AF47{(B"
32 t
33 "$(0&d'GTT&,!J3<5x!K(B and `v' for $(0O:X5>KHATT&,(B
34
35This is the combination of Quail packages \"chinese-py-b5\"
36and \"chinese-punct-b5\".
37You can enter normal Chinese characters by the same way as \"chinese-py-b5\".
38And, you can enter symbols by typing `v' followed by any key sequences
39defined in \"chinese-punct-b5\".
40
41For instance, typing `v' and `%' insert `$(0"h(B'.
42")
43
44(setcar (nthcdr 2 quail-current-package)
45 (nth 2 (assoc "chinese-py-b5" quail-package-alist)))
46
47(quail-defrule "v" (nth 2 (assoc "chinese-punct-b5" quail-package-alist)))