diff options
author | Kenichi Handa <handa@m17n.org> | 1997-05-12 07:00:16 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-05-12 07:00:16 +0000 |
commit | dc09922d1e82dbe164379301e242961748c7e67d (patch) | |
tree | a0e7f24bdd7da511752f92891f9a6716ec77bc5f /lisp/language/vietnamese.el | |
parent | fb8c8b4731971565fe497d6090d9a999b06ea8ef (diff) | |
download | emacs-dc09922d1e82dbe164379301e242961748c7e67d.tar.gz |
Make functions setup-LANGUAGE-environment
interactive and add new functions describe-LANGUAGE-support for
all LANGUAGEs supported. Remove resisterations of input methods
which use the function encoded-kbd-select-terminal.
Diffstat (limited to 'lisp/language/vietnamese.el')
-rw-r--r-- | lisp/language/vietnamese.el | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el index fb62ab33a14..d8c09f55ce0 100644 --- a/lisp/language/vietnamese.el +++ b/lisp/language/vietnamese.el @@ -226,7 +226,9 @@ Both tables are indexed by the position code of Vietnamese characters.") (register-input-method "Vietnamese" '("quail-viqr" quail-use-package "quail/viqr")) -(defun setup-viet-environment () +(defun setup-vietnamese-environment () + "Setup multilingual environment (MULE) for Vietnamese." + (interactive) ;; for VISCII users (setq coding-category-binary 'viscii) @@ -242,12 +244,18 @@ Both tables are indexed by the position code of Vietnamese characters.") (setq default-input-method '("Vietnamese" . "quail-viqr")) ) +(defun describe-vietnamese-support () + "Describe how Emacs supports Vietnamese." + (interactive) + (describe-language-support-internal "Vietnamese")) + (set-language-info-alist - "Vietnamese" '((setup-function . setup-viet-environment) + "Vietnamese" '((setup-function . setup-vietnamese-environment) + (describe-function . describe-vietnamese-support) (charset . (vietnamese-viscii-lower vietnamese-viscii-upper)) (coding-system . (viscii vscii viqr)) - (documentation . t) - (sample-text . "Vietnamese (Ti,1*(Bng Vi,1.(Bt) Ch,1`(Bo b,1U(Bn"))) + (sample-text . "Vietnamese (Ti,1*(Bng Vi,1.(Bt) Ch,1`(Bo b,1U(Bn") + (documentation . nil))) ;;; vietnamese.el ends here |