;; My first successfully customized .emacs --- win98 codepage 1250 set! Auc-TeX installed (View command not working properly)
;; 00:31 09. 11. 03
(custom-set-variables
;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
;; Your init file should contain only one such instance.
'(auto-compression-mode t nil (jka-compr))
'(case-fold-search t)
'(current-language-environment "Latin-2")
'(default-input-method "latin-2-prefix")
'(global-font-lock-mode t nil (font-lock))
'(init-file-user "Neven Jovanovic")
'(input-method-verbose-flag t)
'(latex-run-command "latex -src" t)
'(tex-dvi-view-command "yap %d" t)
'(text-mode-hook (quote (turn-on-auto-fill (lambda nil (line-number-mode 1)) text-mode-hook-identify)))
'(transient-mark-mode t)
'(uniquify-buffer-name-style nil nil (uniquify)))
(custom-set-faces
;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
;; Your init file should contain only one such instance.
'(default ((t (:stipple nil :background "Wheat" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :family "outline-lucida sans unicode")))))
;; add TeX-support
(setq load-path (cons "~/elisp" load-path))
(require 'tex-site)
; setting coding systems (Alexander Mikhalian .emacs, adapted to Win98 using Central European, Croatian settings /cp1250/)
(codepage-setup 1250)
(set-terminal-coding-system 'cp1250)
(set-keyboard-coding-system 'cp1250)
(setq default-buffer-file-coding-system 'cp1250)
(set-selection-coding-system 'cp1250)
(prefer-coding-system 'cp1250)
(define-coding-system-alias 'windows-1250 'cp1250)
(define-coding-system-alias 'microsoft-1250 'cp1250)
(define-coding-system-alias 'microsoft-cp1250 'cp1250)
(define-coding-system-alias 'windows-cp1250 'cp1250)
(modify-coding-system-alist 'file "\.*" 'cp1250)
;; Do not expand unprintable characters to their 8-bit values
(standard-display-8bit 128 255)
;; WinNT fontset for maximum i18n
(set-w32-system-coding-system 'cp1250)
;;TeX
(setq TeX-parse-self t) ; Enable parse on load.
(setq TeX-auto-save t) ; Enable parse on save.