py-punct.el 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ;;; py-punct.el --- Quail packages for Chinese (pinyin + extra symbols) -*-coding: iso-2022-7bit;-*-
  2. ;; Copyright (C) 2001-2012 Free Software Foundation, Inc.
  3. ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
  4. ;; 2006, 2007, 2008, 2009, 2010, 2011
  5. ;; National Institute of Advanced Industrial Science and Technology (AIST)
  6. ;; Registration Number H14PRO021
  7. ;; Author: Ken'ichi HANDA <handa@etl.go.jp>
  8. ;; Keywords: multilingual, input method, Chinese
  9. ;; This file is part of GNU Emacs.
  10. ;; GNU Emacs is free software: you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation, either version 3 of the License, or
  13. ;; (at your option) any later version.
  14. ;; GNU Emacs is distributed in the hope that it will be useful,
  15. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ;; GNU General Public License for more details.
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  20. ;;; Commentary:
  21. ;;; Code:
  22. (require 'quail)
  23. (load "quail/PY")
  24. (load "quail/Punct")
  25. (quail-define-package
  26. "chinese-py-punct" "Chinese-GB" "$AF47{(B"
  27. t
  28. "$A::WVJdHk(B $AF4Rt7=08(B and `v' for $A1j5c7{:EJdHk(B
  29. This is the combination of the input methods `chinese-py' and `chinese-punct'.
  30. You can enter normal Chinese characters by the same way as `chinese-py'.
  31. And, you can enter symbols by typing `v' followed by any key sequences
  32. defined in `chinese-punct'.
  33. For instance, typing `v' and `%' insert `$A#%(B'.
  34. ")
  35. (setcar (nthcdr 2 quail-current-package)
  36. (copy-sequence (nth 2 (assoc "chinese-py" quail-package-alist))))
  37. (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
  38. (load "quail/TONEPY")
  39. (quail-define-package
  40. "chinese-tonepy-punct" "Chinese-GB" "$AF47{(B"
  41. t
  42. "$A::WVJdHk(B $A4x5wF4Rt7=08(B and `v' for $A1j5c7{:EJdHk(B
  43. This is the combination of the input methods `chinese-tonepy' and
  44. `chinese-punct'.
  45. You can enter normal Chinese characters by the same way as
  46. `chinese-tonepy'. And, you can enter symbols by typing `v' followed
  47. by any key sequences defined in `chinese-punct'.
  48. For instance, typing `v' and `%' insert `$A#%(B'.
  49. ")
  50. (setcar (nthcdr 2 quail-current-package)
  51. (copy-sequence (nth 2 (assoc "chinese-tonepy" quail-package-alist))))
  52. (quail-defrule "v" (nth 2 (assoc "chinese-punct" quail-package-alist)))
  53. ;;; py-punct.el ends here