Mercurial > emacs
annotate leim/quail/pypunct-b5.el @ 42947:76e795715361
(xterm-standard-colors): New variable.
(xterm-rgb-convert-to-16bit, xterm-register-default-colors)
(xterm-rxvt-set-background-mode): New functions.
(toplevel): Call xterm-register-default-colors,
xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
Add support for more keys from xterm's terminfo entry.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 25 Jan 2002 13:10:46 +0000 |
parents | 519983161a46 |
children | 04c11327e7a3 d7ddb3e565de bc5a086f9455 |
rev | line source |
---|---|
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
31430
diff
changeset
|
1 ;;; 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 | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
31430
diff
changeset
|
27 ;;; Commentary: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
31430
diff
changeset
|
28 |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
31430
diff
changeset
|
29 ;;; Code: |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
31430
diff
changeset
|
30 |
18966 | 31 (require 'quail) |
32 | |
18803 | 33 (load "quail/PY-b5") |
34 (load "quail/Punct-b5") | |
35 | |
36 (quail-define-package | |
37 "chinese-py-punct-b5" "Chinese-BIG5" "$AF47{(B" | |
38 t | |
39 "$(0&d'GTT&,!J3<5x!K(B and `v' for $(0O:X5>KHATT&,(B | |
40 | |
31430
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
41 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
|
42 `chinese-punct-b5'. |
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
43 |
51af891cb717
("chinese-py-punct-b5"): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
19965
diff
changeset
|
44 You can enter normal Chinese characters by the same way as `chinese-py-b5'. |
18803 | 45 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
|
46 defined in `chinese-punct-b5'. |
18803 | 47 |
48 For instance, typing `v' and `%' insert `$(0"h(B'. | |
49 ") | |
50 | |
51 (setcar (nthcdr 2 quail-current-package) | |
52 (nth 2 (assoc "chinese-py-b5" quail-package-alist))) | |
53 | |
54 (quail-defrule "v" (nth 2 (assoc "chinese-punct-b5" quail-package-alist))) | |
38453
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
31430
diff
changeset
|
55 |
519983161a46
Some fixes to follow lisp coding conventions and typo fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
31430
diff
changeset
|
56 ;;; pypunct-b5.el ends here |