diff options
author | Kenichi Handa <handa@m17n.org> | 1997-05-28 03:39:03 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-05-28 03:39:03 +0000 |
commit | 335a7ad76828cbb6c802eb1f103002f61ec1ec0a (patch) | |
tree | 7fee13fb6eb167b7f250f1c3e6c43727586b4feb /lisp/language/vietnamese.el | |
parent | e4e6cfa0f0247d672b2a605dd2aed398571122f2 (diff) | |
download | emacs-335a7ad76828cbb6c802eb1f103002f61ec1ec0a.tar.gz |
Most of setup-LANGUAGE-environment functions are
moved form LANGUAGE.el to LANG-util.el. These functions now at
first call setup-english-environment to reset various values to
the defaults.
Diffstat (limited to 'lisp/language/vietnamese.el')
-rw-r--r-- | lisp/language/vietnamese.el | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/lisp/language/vietnamese.el b/lisp/language/vietnamese.el index e00e13a3599..a8e1635ecd9 100644 --- a/lisp/language/vietnamese.el +++ b/lisp/language/vietnamese.el @@ -226,33 +226,15 @@ Both tables are indexed by the position code of Vietnamese characters.") (register-input-method "Vietnamese" '("quail-viqr" quail-use-package "quail/viqr")) -(defun setup-vietnamese-environment () - "Setup multilingual environment (MULE) for Vietnamese." - (interactive) - ;; for VISCII users - (setq coding-category-binary 'viscii) - - ;; for VSCII users - ;; (setq coding-category-binary 'vscii) - - (set-coding-priority - '(coding-category-iso-7 - coding-category-binary)) - - (setq-default buffer-file-coding-system 'viscii) - - (setq default-input-method '("Vietnamese" . "quail-viqr")) - ) - (set-language-info-alist "Vietnamese" '((setup-function . setup-vietnamese-environment) (charset . (vietnamese-viscii-lower vietnamese-viscii-upper)) (coding-system . (viscii vscii viqr)) (sample-text . "Vietnamese (Ti,1*(Bng Vi,1.(Bt) Ch,1`(Bo b,1U(Bn") - (documentation . '("\ + (documentation . "\ For Vietnamese, Emacs uses special charasets internally. -They can be decoded from and encoded to VISCC, VSCII, and VIQR.")) +They can be decoded from and encoded to VISCC, VSCII, and VIQR.") )) ;;; vietnamese.el ends here |