aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--leim/quail/py-punct.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/leim/quail/py-punct.el b/leim/quail/py-punct.el
index a2f9c7fef27..c3e380b1062 100644
--- a/leim/quail/py-punct.el
+++ b/leim/quail/py-punct.el
@@ -2,6 +2,7 @@
2 2
3;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. 3;; Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
4;; Licensed to the Free Software Foundation. 4;; Licensed to the Free Software Foundation.
5;; Copyright (C) 2001 Free Software Foundation, Inc.
5 6
6;; Author: Ken'ichi HANDA <handa@etl.go.jp> 7;; Author: Ken'ichi HANDA <handa@etl.go.jp>
7 8
@@ -47,7 +48,7 @@ For instance, typing `v' and `%' insert `$A#%(B'.
47") 48")
48 49
49(setcar (nthcdr 2 quail-current-package) 50(setcar (nthcdr 2 quail-current-package)
50 (nth 2 (assoc "chinese-py" quail-package-alist))) 51 (copy-sequence (nth 2 (assoc "chinese-py" quail-package-alist))))
51 52
52(quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist))) 53(quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
53 54
@@ -68,6 +69,9 @@ by any key sequences defined in `chinese-punct'.
68For instance, typing `v' and `%' insert `$A#%(B'. 69For instance, typing `v' and `%' insert `$A#%(B'.
69") 70")
70 71
71(quail-defrule "v" (nth 2 (assoc "chinese-punct-b5" quail-package-alist))) 72(setcar (nthcdr 2 quail-current-package)
73 (copy-sequence (nth 2 (assoc "chinese-tonepy" quail-package-alist))))
74
75(quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
72 76
73;;; py-punct.el ends here 77;;; py-punct.el ends here