summaryrefslogtreecommitdiff
path: root/korean/hanemacs/files/site-init.el
blob: ed4f832a60b2a1f0a6569cf501cfee0be9d37d85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
;;; site-init.el -- site-dependent initialization file

;;
;; This init file is needed for FreeBSD ports of hanemacs
;;
;; 12 Mar 1998 CHOI Junho <junker@jazz.snu.ac.kr>
;;

; to display hangul char in X-window
(cond
 ((and
     (boundp 'emacs-major-version)
     (= emacs-major-version 19)
     (= emacs-minor-version 34))
  (standard-display-european t)
  (set-input-mode (car (current-input-mode)) (nth 1 (current-input-mode)) 0)
))

;;; site-init.el ends here