.emacsの編集について
windowsでGNU Emacsを使い始めた初心者です。
.emacsを編集してemacsをカスタマイズしようと思い,.emacsが保存されていたCドライブの中のAPPData/Roamingというフォルダに入りました。予定通り.emacsファイルがあったのでそのファイルに命令を追加したのですがemacsに反映されずに困っています。なにか間違っているのでしょうか?教えてください。ちなみにファイルの中身は以下のように記述されています。
/*Textモードとauto-fillモードを自動的に有効にする*/
(setq default-major-mode'text-mode)
(add-Hook 'Texy-mode-hook 'turn-on-auto-fill)
/*言語設定*/
(set-language-environment"japanese" )
/*フォントの設定*/
(create-fontset-from-request "private-fontset"
'((width . 25)
(height . 16)
(fixed . t)
(italic . nil))
'((family . "MS ゴシック")
(family . "Courier New")))
/*色に関する設定*/
(setq default-frame-alist
(append (list '(font . "private-fontset"))
default-frame-alist))
(if window-system (progn
(set-face-foreground 'font-lock-comment-face "MediumSeaGreen")
(set-face-foreground 'font-lock-string-face "purple")
(set-face-foreground 'font-lock-keyword-face "blue")
(set-face-foreground 'font-lock-function-name-face "blue")
(set-face-bold-p 'font-lock-function-name-face t)
(set-face-foreground 'font-lock-variable-name-face "black")
(set-face-foreground 'font-lock-type-face "LightSeaGreen")
(set-face-foreground 'font-lock-builtin-face "purple")
(set-face-foreground 'font-lock-constant-face "black")
(set-face-foreground 'font-lock-warning-face "blue")
(set-face-bold-p 'font-lock-warning-face nil)
(set-background-color "black")
)
;対応する括弧を表示する
(show-paren-mode t)