Mercurial > emacs
annotate leim/quail/pypunct-b5.el @ 35948:0c203af33b2d
(print_string): If we are going to print a unibyte
string into a multibyte buffer, convert the string to multibyte by
str_to_multibyte.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 07 Feb 2001 04:24:14 +0000 |
parents | 51af891cb717 |
children | 519983161a46 |
rev | line source |
---|---|
19965 | 1 ;; quail/pypunct-b5.el -- Quail packages for Chinese (pinyin + extra symbols) |
18803 | 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 | |
18966 | 27 (require 'quail) |
28 | |
18803 | 29 (load "quail/PY-b5") |
30 (load "quail/Punct-b5") | |
31 | |
32 (quail-define-package | |
33 "chinese-py-punct-b5" "Chinese-BIG5" "$AF47{(B" | |
34 t | |
35 "$(0&d'GTT&,!J3<5x!K(B and `v' for $(0O:X5>KHATT&,(B | |
36 | |
31430
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
37 This is the combination of the input method `chinese-py-b5' and |
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
38 `chinese-punct-b5'. |
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
39 |
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
40 You can enter normal Chinese characters by the same way as `chinese-py-b5'. |
18803 | 41 And, you can enter symbols by typing `v' followed by any key sequences |
31430
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
42 defined in `chinese-punct-b5'. |
18803 | 43 |
44 For instance, typing `v' and `%' insert `$(0"h(B'. | |
45 ") | |
46 | |
47 (setcar (nthcdr 2 quail-current-package) | |
48 (nth 2 (assoc "chinese-py-b5" quail-package-alist))) | |
49 | |
50 (quail-defrule "v" (nth 2 (assoc "chinese-punct-b5" quail-package-alist))) |