From: Jason Rumney Date: Sat, 10 Nov 2007 01:30:33 +0000 (+0000) Subject: (w32-initialize-window-system): Move SJIS font setup here from global scope. X-Git-Tag: emacs-pretest-23.0.90~9806 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1adf362df743044230329213bf68ff1e3acdd5e4;p=emacs.git (w32-initialize-window-system): Move SJIS font setup here from global scope. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ae30079d91b..21fcc5a47de 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-11-10 Jason Rumney + + * term/w32-win.el (w32-initialize-window-system): Move SJIS font + setup here from global scope. + 2007-11-10 Juanma Barranquero * ido.el (ido-save-history): Save the history file in UTF-8, not diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index 6a2ea13be38..4a3a685f8c0 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el @@ -1083,12 +1083,6 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.") (error "Suspending an Emacs running under W32 makes no sense")) -;;; Enable Japanese fonts on Windows to be used by default. -(set-fontset-font nil (make-char 'katakana-jisx0201) '("*" . "JISX0208-SJIS")) -(set-fontset-font nil (make-char 'latin-jisx0201) '("*" . "JISX0208-SJIS")) -(set-fontset-font nil (make-char 'japanese-jisx0208) '("*" . "JISX0208-SJIS")) -(set-fontset-font nil (make-char 'japanese-jisx0208-1978) '("*" . "JISX0208-SJIS")) - (defun mouse-set-font (&rest fonts) "Select an Emacs font from a list of known good fonts and fontsets. @@ -1159,6 +1153,17 @@ pop-up menu are unaffected by `w32-list-proportional-fonts')." ;; Setup the default fontset. (setup-default-fontset) + + ;; Enable Japanese fonts on Windows to be used by default. + (set-fontset-font nil (make-char 'katakana-jisx0201) + '("*" . "JISX0208-SJIS")) + (set-fontset-font nil (make-char 'latin-jisx0201) + '("*" . "JISX0208-SJIS")) + (set-fontset-font nil (make-char 'japanese-jisx0208) + '("*" . "JISX0208-SJIS")) + (set-fontset-font nil (make-char 'japanese-jisx0208-1978) + '("*" . "JISX0208-SJIS")) + ;; Create the standard fontset. (create-fontset-from-fontset-spec w32-standard-fontset-spec t) ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1,...).