Created
February 14, 2013 05:58
-
-
Save v2e4lisp/4950869 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(set-language-environment "Japanese") | |
(set-default-coding-systems 'euc-japan-unix) | |
(set-terminal-coding-system 'euc-japan-unix) | |
(set-keyboard-coding-system 'euc-japan-unix) | |
(set-buffer-file-coding-system 'euc-japan-unix) | |
(defun save-as-euc-jp () | |
(interactive) | |
(set-buffer-file-coding-system 'euc-jp) | |
(save-buffer)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment