;; Red Hat Linux default .emacs initialization file

;; Set up the keyboard so the delete key on both the regular keyboard
;; and the keypad delete the character under the cursor and to the right
;; under X, instead of the default, backspace behavior.
(global-set-key [delete] 'delete-char)
(global-set-key [kp-delete] 'delete-char)

;; for Japanese
(set-language-environment "Japanese")
(set-default-coding-systems 'euc-jp)
(if (not window-system)
    (set-terminal-coding-system 'euc-jp))
