;; 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)


;; Require a final newline in a file, to avoid confusing some tools

(setq require-final-newline t)

;; Set environment to Chinese-Big5
(set-language-environment "Chinese-BIG5")
(set-keyboard-coding-system 'chinese-big5)
(set-selection-coding-system 'chinese-big5)
