# HG changeset patch # User Oleksander Gavenko # Date 1208466433 -10800 # Node ID e67fed7ec1f227e58eebfe90549298c4e7aa8a41 # Parent 0ff6c3619d02b34a162b683bf4d5f22c3e664a74 Определил путь к info-файлам для Windows. diff -r 0ff6c3619d02 -r e67fed7ec1f2 .emacs --- a/.emacs Fri Apr 18 00:06:52 2008 +0300 +++ b/.emacs Fri Apr 18 00:07:13 2008 +0300 @@ -525,9 +525,11 @@ ;; Info (require 'info) -(setq Info-directory-list (list (expand-file-name "~/../bin/emacs-22.1/info"))) -:; t - append at the end -(add-to-list 'Info-directory-list (expand-file-name "~/../bin/MinGW/info") t) +(if (equal window-system 'w32) + (progn + (setq Info-directory-list (list (expand-file-name "~/../bin/emacs/info"))) + (add-to-list 'Info-directory-list (expand-file-name "~/../bin/MinGW/info") t) ; t - append to the end + )) ;; ====================================================================== ;;